#include <CppSQLite3.h>
Public Member Functions | |
CppSQLite3Statement () | |
CppSQLite3Statement (const CppSQLite3Statement &rStatement) | |
CppSQLite3Statement (sqlite3 *pDB, sqlite3_stmt *pVM) | |
virtual | ~CppSQLite3Statement () |
CppSQLite3Statement & | operator= (const CppSQLite3Statement &rStatement) |
int | execDML () |
CppSQLite3Query | execQuery () |
void | bind (int nParam, const char *szValue) |
void | bind (int nParam, const int nValue) |
void | bind (int nParam, const double dwValue) |
void | bind (int nParam, const unsigned char *blobValue, int nLen) |
void | bindNull (int nParam) |
void | reset () |
void | finalize () |
Private Member Functions | |
void | checkDB () |
void | checkVM () |
Private Attributes | |
sqlite3 * | mpDB |
sqlite3_stmt * | mpVM |
Definition at line 226 of file CppSQLite3.h.
CppSQLite3Statement::CppSQLite3Statement | ( | ) |
CppSQLite3Statement::CppSQLite3Statement | ( | const CppSQLite3Statement & | rStatement | ) |
CppSQLite3Statement::CppSQLite3Statement | ( | sqlite3 * | pDB, | |
sqlite3_stmt * | pVM | |||
) |
virtual CppSQLite3Statement::~CppSQLite3Statement | ( | ) | [virtual] |
CppSQLite3Statement& CppSQLite3Statement::operator= | ( | const CppSQLite3Statement & | rStatement | ) |
int CppSQLite3Statement::execDML | ( | ) |
CppSQLite3Query CppSQLite3Statement::execQuery | ( | ) |
void CppSQLite3Statement::bind | ( | int | nParam, | |
const char * | szValue | |||
) |
void CppSQLite3Statement::bind | ( | int | nParam, | |
const int | nValue | |||
) |
void CppSQLite3Statement::bind | ( | int | nParam, | |
const double | dwValue | |||
) |
void CppSQLite3Statement::bind | ( | int | nParam, | |
const unsigned char * | blobValue, | |||
int | nLen | |||
) |
void CppSQLite3Statement::bindNull | ( | int | nParam | ) |
void CppSQLite3Statement::reset | ( | ) |
void CppSQLite3Statement::finalize | ( | ) |
void CppSQLite3Statement::checkDB | ( | ) | [private] |
void CppSQLite3Statement::checkVM | ( | ) | [private] |
sqlite3* CppSQLite3Statement::mpDB [private] |
Definition at line 259 of file CppSQLite3.h.
sqlite3_stmt* CppSQLite3Statement::mpVM [private] |
Definition at line 260 of file CppSQLite3.h.