/* statement.h - definitions for the statement type1*2* Copyright (C) 2005-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_STATEMENT_H24#define PYSQLITE_STATEMENT_H25#include "Python.h"2627#include "connection.h"28#include "sqlite3.h"2930typedef struct31{32PyObject_HEAD33sqlite3_stmt* st;34int is_dml;35} pysqlite_Statement;3637pysqlite_Statement *pysqlite_statement_create(pysqlite_Connection *connection, PyObject *sql);3839int pysqlite_statement_setup_types(PyObject *module);4041#endif424344