1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153 |
- ////////////////////////////////////////////////////////////////////////////////
- // CppSQLite3 - A C++ wrapper around the SQLite3 embedded database library.
- //
- // Copyright (c) 2004 Rob Groves. All Rights Reserved. [email protected]
- //
- // Permission to use, copy, modify, and distribute this software and its
- // documentation for any purpose, without fee, and without a written
- // agreement, is hereby granted, provided that the above copyright notice,
- // this paragraph and the following two paragraphs appear in all copies,
- // modifications, and distributions.
- //
- // IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT,
- // INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST
- // PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION,
- // EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- //
- // THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- // PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF
- // ANY, PROVIDED HEREUNDER IS PROVIDED "AS IS". THE AUTHOR HAS NO OBLIGATION
- // TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
- //
- // V3.0 03/08/2004 -Initial Version for sqlite3
- //
- // V3.1 16/09/2004 -Implemented getXXXXField using sqlite3 functions
- // -Added CppSQLiteDB3::tableExists()
- ////////////////////////////////////////////////////////////////////////////////
- #include "StdAfx.h"
- #include "CppSQLite3.h"
- #include <cstdlib>
- #include "..\UnicodeMacros.h"
- // Named constant for passing to CppSQLite3Exception when passing it a string
- // that cannot be deleted.
- static const bool DONT_DELETE_MSG=false;
- ////////////////////////////////////////////////////////////////////////////////
- // Prototypes for SQLite functions not included in SQLite DLL, but copied below
- // from SQLite encode.c
- ////////////////////////////////////////////////////////////////////////////////
- int sqlite3_encode_binary(const unsigned char *in, int n, unsigned char *out);
- int sqlite3_decode_binary(const unsigned char *in, unsigned char *out);
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- CppSQLite3Exception::CppSQLite3Exception(const int nErrCode,
- TCHAR* szErrMess,
- bool bDeleteMsg/*=true*/) :
- mnErrCode(nErrCode)
- {
- #ifdef _UNICODE
- swprintf(mpszErrMess, _T("%s[%d]: %s"),
- errorCodeAsString(nErrCode),
- nErrCode,
- szErrMess ? szErrMess : _T(""));
- #else
- sprintf(mpszErrMess, "%s[%d]: %s",
- errorCodeAsString(nErrCode),
- nErrCode,
- szErrMess ? szErrMess : "");
- #endif
- // if (bDeleteMsg && szErrMess)
- // {
- // sqlite3_free(szErrMess);
- // }
- }
-
- CppSQLite3Exception::CppSQLite3Exception(const CppSQLite3Exception& e) :
- mnErrCode(e.mnErrCode)
- {
- mpszErrMess[0] = 0;
- if(e.mpszErrMess)
- {
- #ifdef _UNICODE
- swprintf(mpszErrMess, _T("%s"), e.mpszErrMess);
- #else
- sprintf(mpszErrMess, "%s", e.mpszErrMess);
- #endif
- }
- }
- const TCHAR* CppSQLite3Exception::errorCodeAsString(int nErrCode)
- {
- switch (nErrCode)
- {
- case SQLITE_OK : return _T("SQLITE_OK");
- case SQLITE_ERROR : return _T("SQLITE_ERROR");
- case SQLITE_INTERNAL : return _T("SQLITE_INTERNAL");
- case SQLITE_PERM : return _T("SQLITE_PERM");
- case SQLITE_ABORT : return _T("SQLITE_ABORT");
- case SQLITE_BUSY : return _T("SQLITE_BUSY");
- case SQLITE_LOCKED : return _T("SQLITE_LOCKED");
- case SQLITE_NOMEM : return _T("SQLITE_NOMEM");
- case SQLITE_READONLY : return _T("SQLITE_READONLY");
- case SQLITE_INTERRUPT : return _T("SQLITE_INTERRUPT");
- case SQLITE_IOERR : return _T("SQLITE_IOERR");
- case SQLITE_CORRUPT : return _T("SQLITE_CORRUPT");
- case SQLITE_NOTFOUND : return _T("SQLITE_NOTFOUND");
- case SQLITE_FULL : return _T("SQLITE_FULL");
- case SQLITE_CANTOPEN : return _T("SQLITE_CANTOPEN");
- case SQLITE_PROTOCOL : return _T("SQLITE_PROTOCOL");
- case SQLITE_EMPTY : return _T("SQLITE_EMPTY");
- case SQLITE_SCHEMA : return _T("SQLITE_SCHEMA");
- case SQLITE_TOOBIG : return _T("SQLITE_TOOBIG");
- case SQLITE_CONSTRAINT : return _T("SQLITE_CONSTRAINT");
- case SQLITE_MISMATCH : return _T("SQLITE_MISMATCH");
- case SQLITE_MISUSE : return _T("SQLITE_MISUSE");
- case SQLITE_NOLFS : return _T("SQLITE_NOLFS");
- case SQLITE_AUTH : return _T("SQLITE_AUTH");
- case SQLITE_FORMAT : return _T("SQLITE_FORMAT");
- case SQLITE_RANGE : return _T("SQLITE_RANGE");
- case SQLITE_ROW : return _T("SQLITE_ROW");
- case SQLITE_DONE : return _T("SQLITE_DONE");
- case CPPSQLITE_ERROR : return _T("CPPSQLITE_ERROR");
- default: return _T("UNKNOWN_ERROR");
- }
- }
- CppSQLite3Exception::~CppSQLite3Exception()
- {
- }
- ////////////////////////////////////////////////////////////////////////////////
- CppSQLite3Query::CppSQLite3Query()
- {
- mpVM = 0;
- mbEof = true;
- mnCols = 0;
- mbOwnVM = false;
- }
- CppSQLite3Query::CppSQLite3Query(const CppSQLite3Query& rQuery)
- {
- mpVM = rQuery.mpVM;
- // Only one object can own the VM
- const_cast<CppSQLite3Query&>(rQuery).mpVM = 0;
- mbEof = rQuery.mbEof;
- mnCols = rQuery.mnCols;
- mbOwnVM = rQuery.mbOwnVM;
- }
- CppSQLite3Query::CppSQLite3Query(sqlite3* pDB,
- sqlite3_stmt* pVM,
- bool bEof,
- bool bOwnVM/*=true*/)
- {
- mpDB = pDB;
- mpVM = pVM;
- mbEof = bEof;
- mnCols = sqlite3_column_count(mpVM);
- mbOwnVM = bOwnVM;
- }
- CppSQLite3Query::~CppSQLite3Query()
- {
- try
- {
- finalize();
- }
- catch (...)
- {
- }
- }
- CppSQLite3Query& CppSQLite3Query::operator=(const CppSQLite3Query& rQuery)
- {
- try
- {
- finalize();
- }
- catch (...)
- {
- }
- mpVM = rQuery.mpVM;
- // Only one object can own the VM
- const_cast<CppSQLite3Query&>(rQuery).mpVM = 0;
- mbEof = rQuery.mbEof;
- mnCols = rQuery.mnCols;
- mbOwnVM = rQuery.mbOwnVM;
- return *this;
- }
- int CppSQLite3Query::numFields()
- {
- checkVM();
- return mnCols;
- }
- const TCHAR* CppSQLite3Query::fieldValue(int nField)
- {
- checkVM();
- if (nField < 0 || nField > mnCols-1)
- {
- throw CppSQLite3Exception(CPPSQLITE_ERROR,
- _T("Invalid field index requested"),
- DONT_DELETE_MSG);
- }
- #ifdef _UNICODE
- return (const TCHAR*)sqlite3_column_text16(mpVM, nField);
- #else
- return (const TCHAR*)sqlite3_column_text(mpVM, nField);
- #endif
- }
- const TCHAR* CppSQLite3Query::fieldValue(const TCHAR* szField)
- {
- int nField = fieldIndex(szField);
- #ifdef _UNICODE
- return (const TCHAR*)sqlite3_column_text16(mpVM, nField);
- #else
- return (const TCHAR*)sqlite3_column_text(mpVM, nField);
- #endif
- }
- int CppSQLite3Query::getIntField(int nField, int nNullValue/*=0*/)
- {
- if (fieldDataType(nField) == SQLITE_NULL)
- {
- return nNullValue;
- }
- else
- {
- return sqlite3_column_int(mpVM, nField);
- }
- }
- int CppSQLite3Query::getIntField(const TCHAR* szField, int nNullValue/*=0*/)
- {
- int nField = fieldIndex(szField);
- return getIntField(nField, nNullValue);
- }
- double CppSQLite3Query::getFloatField(int nField, double fNullValue/*=0.0*/)
- {
- if (fieldDataType(nField) == SQLITE_NULL)
- {
- return fNullValue;
- }
- else
- {
- return sqlite3_column_double(mpVM, nField);
- }
- }
- double CppSQLite3Query::getFloatField(const TCHAR* szField, double fNullValue/*=0.0*/)
- {
- int nField = fieldIndex(szField);
- return getFloatField(nField, fNullValue);
- }
- const TCHAR* CppSQLite3Query::getStringField(int nField, const TCHAR* szNullValue/*=""*/)
- {
- if (fieldDataType(nField) == SQLITE_NULL)
- {
- return szNullValue;
- }
- else
- {
- #ifdef _UNICODE
- return (const TCHAR*)sqlite3_column_text16(mpVM, nField);
- #else
- return (const TCHAR*)sqlite3_column_text(mpVM, nField);
- #endif
- }
- }
- const TCHAR* CppSQLite3Query::getStringField(const TCHAR* szField, const TCHAR* szNullValue/*=""*/)
- {
- int nField = fieldIndex(szField);
- return getStringField(nField, szNullValue);
- }
- int CppSQLite3Query::getBlobFieldSize(int nField)
- {
- checkVM();
- if (nField < 0 || nField > mnCols-1)
- {
- throw CppSQLite3Exception(CPPSQLITE_ERROR,
- _T("Invalid field index requested"),
- DONT_DELETE_MSG);
- }
- int nLen = sqlite3_column_bytes(mpVM, nField);
- return nLen;
- }
- const unsigned char* CppSQLite3Query::getBlobField(int nField, int& nLen)
- {
- checkVM();
- if (nField < 0 || nField > mnCols-1)
- {
- throw CppSQLite3Exception(CPPSQLITE_ERROR,
- _T("Invalid field index requested"),
- DONT_DELETE_MSG);
- }
- nLen = sqlite3_column_bytes(mpVM, nField);
- return (const unsigned char*)sqlite3_column_blob(mpVM, nField);
- }
- int CppSQLite3Query::getBlobFieldSize(const TCHAR* szField)
- {
- int nField = fieldIndex(szField);
- return getBlobFieldSize(nField);
- }
- const unsigned char* CppSQLite3Query::getBlobField(const TCHAR* szField, int& nLen)
- {
- int nField = fieldIndex(szField);
- return getBlobField(nField, nLen);
- }
- bool CppSQLite3Query::fieldIsNull(int nField)
- {
- return (fieldDataType(nField) == SQLITE_NULL);
- }
- bool CppSQLite3Query::fieldIsNull(const TCHAR* szField)
- {
- int nField = fieldIndex(szField);
- return (fieldDataType(nField) == SQLITE_NULL);
- }
- int CppSQLite3Query::fieldIndex(const TCHAR* szField)
- {
- checkVM();
- if (szField)
- {
- for (int nField = 0; nField < mnCols; nField++)
- {
- #ifdef _UNICODE
- const TCHAR* szTemp = (const TCHAR*)sqlite3_column_name16(mpVM, nField);
- #else
- const TCHAR* szTemp = sqlite3_column_name(mpVM, nField);
- #endif
- if(STRCMP(szField, szTemp) == 0)
- {
- return nField;
- }
- }
- }
- throw CppSQLite3Exception(CPPSQLITE_ERROR,
- _T("Invalid field name requested"),
- DONT_DELETE_MSG);
- }
- const TCHAR* CppSQLite3Query::fieldName(int nCol)
- {
- checkVM();
- if (nCol < 0 || nCol > mnCols-1)
- {
- throw CppSQLite3Exception(CPPSQLITE_ERROR,
- _T("Invalid field index requested"),
- DONT_DELETE_MSG);
- }
- #ifdef _UNICODE
- return (const TCHAR*)sqlite3_column_name16(mpVM, nCol);
- #else
- return sqlite3_column_name(mpVM, nCol);
- #endif
- }
- const TCHAR* CppSQLite3Query::fieldDeclType(int nCol)
- {
- checkVM();
- if (nCol < 0 || nCol > mnCols-1)
- {
- throw CppSQLite3Exception(CPPSQLITE_ERROR,
- _T("Invalid field index requested"),
- DONT_DELETE_MSG);
- }
- #ifdef _UNICODE
- return (const TCHAR*)sqlite3_column_decltype16(mpVM, nCol);
- #else
- return sqlite3_column_decltype(mpVM, nCol);
- #endif
- }
- int CppSQLite3Query::fieldDataType(int nCol)
- {
- checkVM();
- if (nCol < 0 || nCol > mnCols-1)
- {
- throw CppSQLite3Exception(CPPSQLITE_ERROR,
- _T("Invalid field index requested"),
- DONT_DELETE_MSG);
- }
- return sqlite3_column_type(mpVM, nCol);
- }
- bool CppSQLite3Query::eof()
- {
- checkVM();
- return mbEof;
- }
- void CppSQLite3Query::nextRow()
- {
- checkVM();
- int nRet = sqlite3_step(mpVM);
- if (nRet == SQLITE_DONE)
- {
- // no rows
- mbEof = true;
- }
- else if (nRet == SQLITE_ROW)
- {
- // more rows, nothing to do
- }
- else
- {
- nRet = sqlite3_finalize(mpVM);
- mpVM = 0;
- SQLITE3_ERRMSG(mpDB);
- throw CppSQLite3Exception(nRet, (TCHAR*)szError, DONT_DELETE_MSG);
- }
- }
- void CppSQLite3Query::finalize()
- {
- if (mpVM && mbOwnVM)
- {
- int nRet = sqlite3_finalize(mpVM);
- mpVM = 0;
- if (nRet != SQLITE_OK)
- {
- SQLITE3_ERRMSG(mpDB);
- throw CppSQLite3Exception(nRet, (TCHAR*)szError, DONT_DELETE_MSG);
- }
- }
- }
- void CppSQLite3Query::checkVM()
- {
- if (mpVM == 0)
- {
- throw CppSQLite3Exception(CPPSQLITE_ERROR,
- _T("Null Virtual Machine pointer"),
- DONT_DELETE_MSG);
- }
- }
- ////////////////////////////////////////////////////////////////////////////////
- CppSQLite3Statement::CppSQLite3Statement()
- {
- mpDB = 0;
- mpVM = 0;
- }
- CppSQLite3Statement::CppSQLite3Statement(const CppSQLite3Statement& rStatement)
- {
- mpDB = rStatement.mpDB;
- mpVM = rStatement.mpVM;
- // Only one object can own VM
- const_cast<CppSQLite3Statement&>(rStatement).mpVM = 0;
- }
- CppSQLite3Statement::CppSQLite3Statement(sqlite3* pDB, sqlite3_stmt* pVM)
- {
- mpDB = pDB;
- mpVM = pVM;
- }
- CppSQLite3Statement::~CppSQLite3Statement()
- {
- try
- {
- finalize();
- }
- catch (...)
- {
- }
- }
- CppSQLite3Statement& CppSQLite3Statement::operator=(const CppSQLite3Statement& rStatement)
- {
- mpDB = rStatement.mpDB;
- mpVM = rStatement.mpVM;
- // Only one object can own VM
- const_cast<CppSQLite3Statement&>(rStatement).mpVM = 0;
- return *this;
- }
- int CppSQLite3Statement::execDML()
- {
- checkDB();
- checkVM();
- int nRet = sqlite3_step(mpVM);
- if (nRet == SQLITE_DONE)
- {
- int nRowsChanged = sqlite3_changes(mpDB);
- nRet = sqlite3_reset(mpVM);
- if (nRet != SQLITE_OK)
- {
- SQLITE3_ERRMSG(mpDB);
- throw CppSQLite3Exception(nRet, (TCHAR*)szError, DONT_DELETE_MSG);
- }
- return nRowsChanged;
- }
- else
- {
- nRet = sqlite3_reset(mpVM);
- SQLITE3_ERRMSG(mpDB);
- throw CppSQLite3Exception(nRet, (TCHAR*)szError, DONT_DELETE_MSG);
- }
- }
- CppSQLite3Query CppSQLite3Statement::execQuery()
- {
- checkDB();
- checkVM();
- int nRet = sqlite3_step(mpVM);
- if (nRet == SQLITE_DONE)
- {
- // no rows
- return CppSQLite3Query(mpDB, mpVM, true/*eof*/, false);
- }
- else if (nRet == SQLITE_ROW)
- {
- // at least 1 row
- return CppSQLite3Query(mpDB, mpVM, false/*eof*/, false);
- }
- else
- {
- nRet = sqlite3_reset(mpVM);
- SQLITE3_ERRMSG(mpDB);
- throw CppSQLite3Exception(nRet, (TCHAR*)szError, DONT_DELETE_MSG);
- }
- }
- void CppSQLite3Statement::bind(int nParam, const TCHAR* szValue)
- {
- checkVM();
- #ifdef _UNICODE
- int nRes = sqlite3_bind_text16(mpVM, nParam, szValue, -1, SQLITE_TRANSIENT);
- #else
- int nRes = sqlite3_bind_text(mpVM, nParam, szValue, -1, SQLITE_TRANSIENT);
- #endif
- if (nRes != SQLITE_OK)
- {
- throw CppSQLite3Exception(nRes,
- _T("Error binding string param"),
- DONT_DELETE_MSG);
- }
- }
- void CppSQLite3Statement::bind(int nParam, const int nValue)
- {
- checkVM();
- int nRes = sqlite3_bind_int(mpVM, nParam, nValue);
- if (nRes != SQLITE_OK)
- {
- throw CppSQLite3Exception(nRes,
- _T("Error binding int param"),
- DONT_DELETE_MSG);
- }
- }
- void CppSQLite3Statement::bind(int nParam, const double dValue)
- {
- checkVM();
- int nRes = sqlite3_bind_double(mpVM, nParam, dValue);
- if (nRes != SQLITE_OK)
- {
- throw CppSQLite3Exception(nRes,
- _T("Error binding double param"),
- DONT_DELETE_MSG);
- }
- }
- void CppSQLite3Statement::bind(int nParam, const unsigned char* blobValue, int nLen)
- {
- checkVM();
- int nRes = sqlite3_bind_blob(mpVM, nParam,
- (const void*)blobValue, nLen, SQLITE_TRANSIENT);
- if (nRes != SQLITE_OK)
- {
- throw CppSQLite3Exception(nRes,
- _T("Error binding blob param"),
- DONT_DELETE_MSG);
- }
- }
-
- void CppSQLite3Statement::bindNull(int nParam)
- {
- checkVM();
- int nRes = sqlite3_bind_null(mpVM, nParam);
- if (nRes != SQLITE_OK)
- {
- throw CppSQLite3Exception(nRes,
- _T("Error binding NULL param"),
- DONT_DELETE_MSG);
- }
- }
- void CppSQLite3Statement::reset()
- {
- if (mpVM)
- {
- int nRet = sqlite3_reset(mpVM);
- if (nRet != SQLITE_OK)
- {
- SQLITE3_ERRMSG(mpDB);
- throw CppSQLite3Exception(nRet, (TCHAR*)szError, DONT_DELETE_MSG);
- }
- }
- }
- void CppSQLite3Statement::finalize()
- {
- if (mpVM)
- {
- int nRet = sqlite3_finalize(mpVM);
- mpVM = 0;
- if (nRet != SQLITE_OK)
- {
- SQLITE3_ERRMSG(mpDB);
- throw CppSQLite3Exception(nRet, (TCHAR*)szError, DONT_DELETE_MSG);
- }
- }
- }
- void CppSQLite3Statement::checkDB()
- {
- if (mpDB == 0)
- {
- throw CppSQLite3Exception(CPPSQLITE_ERROR,
- _T("Database not open"),
- DONT_DELETE_MSG);
- }
- }
- void CppSQLite3Statement::checkVM()
- {
- if (mpVM == 0)
- {
- throw CppSQLite3Exception(CPPSQLITE_ERROR,
- _T("Null Virtual Machine pointer"),
- DONT_DELETE_MSG);
- }
- }
- ////////////////////////////////////////////////////////////////////////////////
- CppSQLite3DB::CppSQLite3DB()
- {
- mpDB = 0;
- mnBusyTimeoutMs = 60000; // 60 seconds
- }
- CppSQLite3DB::CppSQLite3DB(const CppSQLite3DB& db)
- {
- mpDB = db.mpDB;
- mnBusyTimeoutMs = 60000; // 60 seconds
- }
- CppSQLite3DB::~CppSQLite3DB()
- {
- close();
- }
- CppSQLite3DB& CppSQLite3DB::operator=(const CppSQLite3DB& db)
- {
- mpDB = db.mpDB;
- mnBusyTimeoutMs = 60000; // 60 seconds
- return *this;
- }
- void CppSQLite3DB::open(const TCHAR* szFile)
- {
- #ifdef _UNICODE
- int nRet = sqlite3_open16(szFile, &mpDB);
- #else
- int nRet = sqlite3_open(szFile, &mpDB);
- #endif
- if (nRet != SQLITE_OK)
- {
- SQLITE3_ERRMSG(mpDB);
- throw CppSQLite3Exception(nRet, (TCHAR*)szError, DONT_DELETE_MSG);
- }
- setBusyTimeout(mnBusyTimeoutMs);
- }
- bool CppSQLite3DB::close()
- {
- bool bRet = true;
- if (mpDB)
- {
- int nClose = sqlite3_close(mpDB);
- if(nClose != SQLITE_OK)
- {
- ASSERT(!"Error closing sqlite db");
- bRet = false;
- }
- mpDB = 0;
- }
- return bRet;
- }
- CppSQLite3Statement CppSQLite3DB::compileStatement(const TCHAR* szSQL)
- {
- checkDB();
- sqlite3_stmt* pVM = compile(szSQL);
- return CppSQLite3Statement(mpDB, pVM);
- }
- bool CppSQLite3DB::tableExists(const TCHAR* szTable)
- {
- TCHAR szSQL[128];
- SPRINTF(szSQL,
- _T("select count(*) from sqlite_master where type='table' and name='%s'"),
- szTable);
- int nRet = execScalar(szSQL);
- return (nRet > 0);
- }
- int CppSQLite3DB::execDMLEx(LPCTSTR szSQL,...)
- {
- CString csText;
- va_list vlist;
- ASSERT(AfxIsValidString(szSQL));
- va_start(vlist,szSQL);
- csText.FormatV(szSQL,vlist);
- va_end(vlist);
- return execDML(csText);
- }
- int CppSQLite3DB::execDML(const TCHAR* szSQL)
- {
- checkDB();
- sqlite3_stmt* pVM = compile(szSQL);
- int nRet = sqlite3_step(pVM);
- if (nRet == SQLITE_DONE)
- {
- nRet = sqlite3_changes(mpDB);
- sqlite3_finalize(pVM);
- }
- else
- {
- nRet = sqlite3_finalize(pVM);
- SQLITE3_ERRMSG(mpDB);
- throw CppSQLite3Exception(nRet, (TCHAR*)szError, DONT_DELETE_MSG);
- }
-
- return nRet;
- }
- CppSQLite3Query CppSQLite3DB::execQueryEx(LPCTSTR szSQL,...)
- {
- CString csText;
- va_list vlist;
- ASSERT(AfxIsValidString(szSQL));
- va_start(vlist,szSQL);
- csText.FormatV(szSQL,vlist);
- va_end(vlist);
- return execQuery(csText);
- }
- CppSQLite3Query CppSQLite3DB::execQuery(const TCHAR* szSQL)
- {
- checkDB();
- sqlite3_stmt* pVM = compile(szSQL);
- int nRet = sqlite3_step(pVM);
- if (nRet == SQLITE_DONE)
- {
- // no rows
- return CppSQLite3Query(mpDB, pVM, true/*eof*/);
- }
- else if (nRet == SQLITE_ROW)
- {
- // at least 1 row
- return CppSQLite3Query(mpDB, pVM, false/*eof*/);
- }
- else
- {
- nRet = sqlite3_finalize(pVM);
- SQLITE3_ERRMSG(mpDB);
- throw CppSQLite3Exception(nRet, (TCHAR*)szError, DONT_DELETE_MSG);
- }
- }
- int CppSQLite3DB::execScalarEx(LPCTSTR szSQL,...)
- {
- CString csText;
- va_list vlist;
- ASSERT(AfxIsValidString(szSQL));
- va_start(vlist, szSQL);
- csText.FormatV(szSQL,vlist);
- va_end(vlist);
- return execScalar(csText);
- }
- int CppSQLite3DB::execScalar(const TCHAR* szSQL)
- {
- CppSQLite3Query q = execQuery(szSQL);
- if (q.eof() || q.numFields() < 1)
- {
- throw CppSQLite3Exception(CPPSQLITE_ERROR,
- _T("Invalid scalar query"),
- DONT_DELETE_MSG);
- }
- return ATOI(q.fieldValue(0));
- }
- sqlite_int64 CppSQLite3DB::lastRowId()
- {
- return sqlite3_last_insert_rowid(mpDB);
- }
- void CppSQLite3DB::setBusyTimeout(int nMillisecs)
- {
- mnBusyTimeoutMs = nMillisecs;
- sqlite3_busy_timeout(mpDB, mnBusyTimeoutMs);
- }
- void CppSQLite3DB::checkDB()
- {
- if (!mpDB)
- {
- throw CppSQLite3Exception(CPPSQLITE_ERROR,
- _T("Database not open"),
- DONT_DELETE_MSG);
- }
- }
- sqlite3_stmt* CppSQLite3DB::compile(const TCHAR* szSQL)
- {
- checkDB();
- TCHAR* szError=0;
- const TCHAR* szTail=0;
- sqlite3_stmt* pVM;
- #ifdef _UNICODE
- int nRet = sqlite3_prepare16(mpDB, szSQL, -1, &pVM, (const void**)szTail);
- #else
- int nRet = sqlite3_prepare(mpDB, szSQL, -1, &pVM, &szTail);
- #endif
- if (nRet != SQLITE_OK)
- {
- throw CppSQLite3Exception(nRet, (TCHAR*)szError);
- }
- return pVM;
- }
- ////////////////////////////////////////////////////////////////////////////////
- // SQLite encode.c reproduced here, containing implementation notes and source
- // for sqlite3_encode_binary() and sqlite3_decode_binary()
- ////////////////////////////////////////////////////////////////////////////////
- /*
- ** 2002 April 25
- **
- ** The author disclaims copyright to this source code. In place of
- ** a legal notice, here is a blessing:
- **
- ** May you do good and not evil.
- ** May you find forgiveness for yourself and forgive others.
- ** May you share freely, never taking more than you give.
- **
- *************************************************************************
- ** This file contains helper routines used to translate binary data into
- ** a null-terminated string (suitable for use in SQLite) and back again.
- ** These are convenience routines for use by people who want to store binary
- ** data in an SQLite database. The code in this file is not used by any other
- ** part of the SQLite library.
- **
- ** $Id: CppSQLite3.cpp,v 1.2 2006-09-14 04:56:10 sabrogden Exp $
- */
- /*
- ** How This Encoder Works
- **
- ** The output is allowed to contain any character except 0x27 (') and
- ** 0x00. This is accomplished by using an escape character to encode
- ** 0x27 and 0x00 as a two-byte sequence. The escape character is always
- ** 0x01. An 0x00 is encoded as the two byte sequence 0x01 0x01. The
- ** 0x27 character is encoded as the two byte sequence 0x01 0x03. Finally,
- ** the escape character itself is encoded as the two-character sequence
- ** 0x01 0x02.
- **
- ** To summarize, the encoder works by using an escape sequences as follows:
- **
- ** 0x00 -> 0x01 0x01
- ** 0x01 -> 0x01 0x02
- ** 0x27 -> 0x01 0x03
- **
- ** If that were all the encoder did, it would work, but in certain cases
- ** it could double the size of the encoded string. For example, to
- ** encode a string of 100 0x27 characters would require 100 instances of
- ** the 0x01 0x03 escape sequence resulting in a 200-character output.
- ** We would prefer to keep the size of the encoded string smaller than
- ** this.
- **
- ** To minimize the encoding size, we first add a fixed offset value to each
- ** byte in the sequence. The addition is modulo 256. (That is to say, if
- ** the sum of the original character value and the offset exceeds 256, then
- ** the higher order bits are truncated.) The offset is chosen to minimize
- ** the number of characters in the string that need to be escaped. For
- ** example, in the case above where the string was composed of 100 0x27
- ** characters, the offset might be 0x01. Each of the 0x27 characters would
- ** then be converted into an 0x28 character which would not need to be
- ** escaped at all and so the 100 character input string would be converted
- ** into just 100 characters of output. Actually 101 characters of output -
- ** we have to record the offset used as the first byte in the sequence so
- ** that the string can be decoded. Since the offset value is stored as
- ** part of the output string and the output string is not allowed to contain
- ** characters 0x00 or 0x27, the offset cannot be 0x00 or 0x27.
- **
- ** Here, then, are the encoding steps:
- **
- ** (1) Choose an offset value and make it the first character of
- ** output.
- **
- ** (2) Copy each input character into the output buffer, one by
- ** one, adding the offset value as you copy.
- **
- ** (3) If the value of an input character plus offset is 0x00, replace
- ** that one character by the two-character sequence 0x01 0x01.
- ** If the sum is 0x01, replace it with 0x01 0x02. If the sum
- ** is 0x27, replace it with 0x01 0x03.
- **
- ** (4) Put a 0x00 terminator at the end of the output.
- **
- ** Decoding is obvious:
- **
- ** (5) Copy encoded characters except the first into the decode
- ** buffer. Set the first encoded character aside for use as
- ** the offset in step 7 below.
- **
- ** (6) Convert each 0x01 0x01 sequence into a single character 0x00.
- ** Convert 0x01 0x02 into 0x01. Convert 0x01 0x03 into 0x27.
- **
- ** (7) Subtract the offset value that was the first character of
- ** the encoded buffer from all characters in the output buffer.
- **
- ** The only tricky part is step (1) - how to compute an offset value to
- ** minimize the size of the output buffer. This is accomplished by testing
- ** all offset values and picking the one that results in the fewest number
- ** of escapes. To do that, we first scan the entire input and count the
- ** number of occurances of each character value in the input. Suppose
- ** the number of 0x00 characters is N(0), the number of occurances of 0x01
- ** is N(1), and so forth up to the number of occurances of 0xff is N(255).
- ** An offset of 0 is not allowed so we don't have to test it. The number
- ** of escapes required for an offset of 1 is N(1)+N(2)+N(40). The number
- ** of escapes required for an offset of 2 is N(2)+N(3)+N(41). And so forth.
- ** In this way we find the offset that gives the minimum number of escapes,
- ** and thus minimizes the length of the output string.
- */
- /*
- ** Encode a binary buffer "in" of size n bytes so that it contains
- ** no instances of characters '\'' or '\000'. The output is
- ** null-terminated and can be used as a string value in an INSERT
- ** or UPDATE statement. Use sqlite3_decode_binary() to convert the
- ** string back into its original binary.
- **
- ** The result is written into a preallocated output buffer "out".
- ** "out" must be able to hold at least 2 +(257*n)/254 bytes.
- ** In other words, the output will be expanded by as much as 3
- ** bytes for every 254 bytes of input plus 2 bytes of fixed overhead.
- ** (This is approximately 2 + 1.0118*n or about a 1.2% size increase.)
- **
- ** The return value is the number of characters in the encoded
- ** string, excluding the "\000" terminator.
- */
- int sqlite3_encode_binary(const unsigned char *in, int n, unsigned char *out){
- int i, j, e, m;
- int cnt[256];
- if( n<=0 ){
- out[0] = 'x';
- out[1] = 0;
- return 1;
- }
- memset(cnt, 0, sizeof(cnt));
- for(i=n-1; i>=0; i--){ cnt[in[i]]++; }
- m = n;
- for(i=1; i<256; i++){
- int sum;
- if( i=='\'' ) continue;
- sum = cnt[i] + cnt[(i+1)&0xff] + cnt[(i+'\'')&0xff];
- if( sum<m ){
- m = sum;
- e = i;
- if( m==0 ) break;
- }
- }
- out[0] = e;
- j = 1;
- for(i=0; i<n; i++){
- int c = (in[i] - e)&0xff;
- if( c==0 ){
- out[j++] = 1;
- out[j++] = 1;
- }else if( c==1 ){
- out[j++] = 1;
- out[j++] = 2;
- }else if( c=='\'' ){
- out[j++] = 1;
- out[j++] = 3;
- }else{
- out[j++] = c;
- }
- }
- out[j] = 0;
- return j;
- }
- /*
- ** Decode the string "in" into binary data and write it into "out".
- ** This routine reverses the encoding created by sqlite3_encode_binary().
- ** The output will always be a few bytes less than the input. The number
- ** of bytes of output is returned. If the input is not a well-formed
- ** encoding, -1 is returned.
- **
- ** The "in" and "out" parameters may point to the same buffer in order
- ** to decode a string in place.
- */
- int sqlite3_decode_binary(const unsigned char *in, unsigned char *out){
- int i, c, e;
- e = *(in++);
- i = 0;
- while( (c = *(in++))!=0 ){
- if( c==1 ){
- c = *(in++);
- if( c==1 ){
- c = 0;
- }else if( c==2 ){
- c = 1;
- }else if( c==3 ){
- c = '\'';
- }else{
- return -1;
- }
- }
- out[i++] = (c + e)&0xff;
- }
- return i;
- }
|