#include <sqlite2xx.hpp>
Inheritance diagram for Sqlite2Context:

Public Member Functions | |
| Sqlite2Context (const string &dbName="") | |
| Constructor. | |
| ~Sqlite2Context () | |
| Destructor. | |
| void | close () |
| Close connection. | |
| string | escapeString (const string &original) const |
| string | version () const |
| Version information. | |
Friends | |
| SqlResult | SqlQuery::operator() (const string &) |
Definition at line 36 of file sqlite2xx.hpp.
| Sqlite2Context::Sqlite2Context | ( | const string & | dbName = "" |
) |
Constructor.
Used to create a connection to a SQLite2 database.
| dbName | The path and filename of the database file. |
Definition at line 33 of file sqlite2xx.cpp.
| Sqlite2Context::~Sqlite2Context | ( | ) |
| void Sqlite2Context::close | ( | ) | [virtual] |
Close connection.
This will close and clean up the database connection, including freeing memory. Note: It does not delete the SqlDatabase object itself.
Implements SqlDatabase.
Definition at line 55 of file sqlite2xx.cpp.
Referenced by ~Sqlite2Context().
| string Sqlite2Context::escapeString | ( | const string & | original | ) | const |
Definition at line 64 of file sqlite2xx.cpp.
| string Sqlite2Context::version | ( | ) | const [virtual] |
Version information.
Get the version information of the underlying API library, not the version of SqlWrapperXX.
Implements SqlDatabase.
Definition at line 78 of file sqlite2xx.cpp.
| SqlResult SqlQuery::operator() | ( | const string & | ) | [friend] |
1.5.0