/* cursor.h - definitions for the cursor type1*2* Copyright (C) 2004-2010 Gerhard Häring <[email protected]>3*4* This file is part of pysqlite.5*6* This software is provided 'as-is', without any express or implied7* warranty. In no event will the authors be held liable for any damages8* arising from the use of this software.9*10* Permission is granted to anyone to use this software for any purpose,11* including commercial applications, and to alter it and redistribute it12* freely, subject to the following restrictions:13*14* 1. The origin of this software must not be misrepresented; you must not15* claim that you wrote the original software. If you use this software16* in a product, an acknowledgment in the product documentation would be17* appreciated but is not required.18* 2. Altered source versions must be plainly marked as such, and must not be19* misrepresented as being the original software.20* 3. This notice may not be removed or altered from any source distribution.21*/2223#ifndef PYSQLITE_CURSOR_H24#define PYSQLITE_CURSOR_H25#include "Python.h"2627#include "statement.h"28#include "connection.h"29#include "module.h"3031typedef struct32{33PyObject_HEAD34pysqlite_Connection* connection;35PyObject* description;36PyObject* row_cast_map;37int arraysize;38PyObject* lastrowid;39long rowcount;40PyObject* row_factory;41pysqlite_Statement* statement;42int closed;43int locked;44int initialized;4546PyObject* in_weakreflist; /* List of weak references */47} pysqlite_Cursor;4849int pysqlite_cursor_setup_types(PyObject *module);5051#endif525354