/* util.h - various utility functions1*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_UTIL_H24#define PYSQLITE_UTIL_H25#include "Python.h"26#include "pythread.h"27#include "sqlite3.h"28#include "connection.h"2930/**31* Checks the SQLite error code and sets the appropriate DB-API exception.32* Returns the error code (0 means no error occurred).33*/34int _pysqlite_seterror(pysqlite_state *state, sqlite3 *db);3536sqlite_int64 _pysqlite_long_as_int64(PyObject * value);3738#endif394041