wxSQLite3 4.9.12
|
Result set of a SQL query. More...
#include <wxsqlite3.h>
Public Member Functions | |
wxSQLite3ResultSet () | |
Constructor. | |
wxSQLite3ResultSet (const wxSQLite3ResultSet &resultSet) | |
Copy constructor. | |
wxSQLite3ResultSet (wxSQLite3DatabaseReference *db, wxSQLite3StatementReference *stmt, bool eof, bool first=true) | |
Constructor for internal use. | |
wxSQLite3ResultSet & | operator= (const wxSQLite3ResultSet &resultSet) |
Assignment constructor. | |
virtual | ~wxSQLite3ResultSet () |
Destructor. | |
int | GetColumnCount () const |
Get the number of columns in the result set. | |
int | FindColumnIndex (const wxString &columnName) const |
Find the index of a column by name. | |
wxString | GetColumnName (int columnIndex) const |
Get the name of a column. | |
wxString | GetDeclaredColumnType (int columnIndex) const |
Get the declared type of a column. | |
int | GetColumnType (int columnIndex) const |
Get the actual type of a column. | |
wxString | GetDatabaseName (int columnIndex) const |
Get the database name of a column. | |
wxString | GetTableName (int columnIndex) const |
Get the table name of a column. | |
wxString | GetOriginName (int columnIndex) const |
Get the origin name of a column. | |
wxString | GetAsString (int columnIndex) const |
Get a column as a string using the column index. | |
wxString | GetAsString (const wxString &columnName) const |
Get a column as a string using the column name. | |
int | GetInt (int columnIndex, int nullValue=0) const |
Get a column as an integer using the column index. | |
int | GetInt (const wxString &columnName, int nullValue=0) const |
Get a column as an integer using the column name. | |
wxLongLong | GetInt64 (int columnIndex, wxLongLong nullValue=0) const |
Get a column as a 64-bit integer using the column index. | |
wxLongLong | GetInt64 (const wxString &columnName, wxLongLong nullValue=0) const |
Get a column as a 64-bit integer using the column name. | |
double | GetDouble (int columnIndex, double nullValue=0.0) const |
Get a column as a double using the column index. | |
double | GetDouble (const wxString &columnName, double nullValue=0.0) const |
Get a column as a double using the column name. | |
wxString | GetString (int columnIndex, const wxString &nullValue=wxEmptyString) const |
Get a column as a string using the column index. | |
wxString | GetString (const wxString &columnName, const wxString &nullValue=wxEmptyString) const |
Get a column as a string using the column name. | |
const unsigned char * | GetBlob (int columnIndex, int &len) const |
Get a column as a BLOB using the column index. | |
const unsigned char * | GetBlob (const wxString &columnName, int &len) const |
Get a column as a BLOB using the column name. | |
wxMemoryBuffer & | GetBlob (int columnIndex, wxMemoryBuffer &buffer) const |
Get a column as a BLOB using the column index and append to memory buffer. | |
wxMemoryBuffer & | GetBlob (const wxString &columnName, wxMemoryBuffer &buffer) const |
Get a column as a BLOB using the column index and append to memory buffer. | |
wxDateTime | GetDate (int columnIndex) const |
Get a column as a date value using the column index. | |
wxDateTime | GetDate (const wxString &columnName) const |
Get a column as a date value using the column name. | |
wxDateTime | GetTime (int columnIndex) const |
Get a column as a time value using the column index. | |
wxDateTime | GetTime (const wxString &columnName) const |
Get a column as a time value using the column name. | |
wxDateTime | GetDateTime (int columnIndex) const |
Get a column as a date and time value using the column index. | |
wxDateTime | GetDateTime (const wxString &columnName) const |
Get a column as a date and time value using the column name. | |
wxDateTime | GetTimestamp (int columnIndex) const |
Get a column as a timestamp value using the column index. | |
wxDateTime | GetTimestamp (const wxString &columnName) const |
Get a column as a timestamp value using the column name. | |
wxDateTime | GetNumericDateTime (int columnIndex) const |
Get a column as a date and time value using the column index. | |
wxDateTime | GetNumericDateTime (const wxString &columnName) const |
Get a column as a date and time value using the column name. | |
wxDateTime | GetUnixDateTime (int columnIndex) const |
Get a column as a date and time value using the column index. | |
wxDateTime | GetUnixDateTime (const wxString &columnName) const |
Get a column as a date and time value using the column name. | |
wxDateTime | GetJulianDayNumber (int columnIndex) const |
Get a column as a date and time value using the column index. | |
wxDateTime | GetJulianDayNumber (const wxString &columnName) const |
Get a column as a date and time value using the column name. | |
wxDateTime | GetAutomaticDateTime (int columnIndex, bool milliSeconds=false) const |
Get a column as a date and time value using the column index. | |
wxDateTime | GetAutomaticDateTime (const wxString &columnName, bool milliSeconds=false) const |
Get a column as a date and time value using the column name. | |
bool | GetBool (int columnIndex) const |
Get a column as a boolean value using the column index. | |
bool | GetBool (const wxString &columnName) const |
Get a column as a boolean value using the column name. | |
bool | IsNull (int columnIndex) const |
Check whether a column has a NULL value using the column index. | |
bool | IsNull (const wxString &columnName) const |
Check whether a column has a NULL value using the column name. | |
bool | Eof () const |
Check whether all rows of the result set have been processed. | |
bool | CursorMoved () const |
Check whether the cursor has been moved. | |
bool | NextRow () |
Retrieve next row of the result set. | |
void | Finalize () |
Finalize the result set. | |
wxString | GetSQL () const |
Get the original SQL string for preparing the query statement. | |
wxString | GetExpandedSQL () const |
Get the original SQL string for preparing the query statement with expanded bound parameters. | |
bool | IsOk () const |
Validate associated SQLite database and statement. | |
Result set of a SQL query.
wxSQLite3ResultSet::wxSQLite3ResultSet | ( | ) |
Constructor.
wxSQLite3ResultSet::wxSQLite3ResultSet | ( | const wxSQLite3ResultSet & | resultSet | ) |
Copy constructor.
wxSQLite3ResultSet::wxSQLite3ResultSet | ( | wxSQLite3DatabaseReference * | db, |
wxSQLite3StatementReference * | stmt, | ||
bool | eof, | ||
bool | first = true ) |
Constructor for internal use.
|
virtual |
Destructor.
bool wxSQLite3ResultSet::CursorMoved | ( | ) | const |
Check whether the cursor has been moved.
bool wxSQLite3ResultSet::Eof | ( | ) | const |
Check whether all rows of the result set have been processed.
void wxSQLite3ResultSet::Finalize | ( | ) |
Finalize the result set.
int wxSQLite3ResultSet::FindColumnIndex | ( | const wxString & | columnName | ) | const |
Find the index of a column by name.
columnName | name of the column |
wxString wxSQLite3ResultSet::GetAsString | ( | const wxString & | columnName | ) | const |
Get a column as a string using the column name.
columnName | name of the column |
wxString wxSQLite3ResultSet::GetAsString | ( | int | columnIndex | ) | const |
Get a column as a string using the column index.
columnIndex | index of the column. Indices start with 0. |
wxDateTime wxSQLite3ResultSet::GetAutomaticDateTime | ( | const wxString & | columnName, |
bool | milliSeconds = false ) const |
Get a column as a date and time value using the column name.
The date/time value is interpreted based on the type of column value.
columnName | name of the column |
milliSeconds | interpret integer value as milliseconds since 1970-01-01, default: false |
wxDateTime wxSQLite3ResultSet::GetAutomaticDateTime | ( | int | columnIndex, |
bool | milliSeconds = false ) const |
Get a column as a date and time value using the column index.
The date/time value is interpreted based on the type of column value.
columnIndex | index of the column. Indices start with 0. |
milliSeconds | interpret integer value as milliseconds since 1970-01-01, default: false |
const unsigned char * wxSQLite3ResultSet::GetBlob | ( | const wxString & | columnName, |
int & | len ) const |
Get a column as a BLOB using the column name.
columnName | name of the column | |
[out] | len | length of the blob in bytes |
wxMemoryBuffer & wxSQLite3ResultSet::GetBlob | ( | const wxString & | columnName, |
wxMemoryBuffer & | buffer ) const |
Get a column as a BLOB using the column index and append to memory buffer.
columnName | name of the column | |
[out] | buffer | the memory buffer to which the BLOB value is appended |
const unsigned char * wxSQLite3ResultSet::GetBlob | ( | int | columnIndex, |
int & | len ) const |
Get a column as a BLOB using the column index.
columnIndex | index of the column. Indices start with 0. | |
[out] | len | length of the blob in bytes |
wxMemoryBuffer & wxSQLite3ResultSet::GetBlob | ( | int | columnIndex, |
wxMemoryBuffer & | buffer ) const |
Get a column as a BLOB using the column index and append to memory buffer.
columnIndex | index of the column. Indices start with 0. | |
[out] | buffer | the memory buffer to which the BLOB value is appended |
bool wxSQLite3ResultSet::GetBool | ( | const wxString & | columnName | ) | const |
Get a column as a boolean value using the column name.
columnName | name of the column |
bool wxSQLite3ResultSet::GetBool | ( | int | columnIndex | ) | const |
Get a column as a boolean value using the column index.
columnIndex | index of the column. Indices start with 0. |
int wxSQLite3ResultSet::GetColumnCount | ( | ) | const |
Get the number of columns in the result set.
wxString wxSQLite3ResultSet::GetColumnName | ( | int | columnIndex | ) | const |
Get the name of a column.
columnIndex | index of the column. Indices start with 0. |
int wxSQLite3ResultSet::GetColumnType | ( | int | columnIndex | ) | const |
Get the actual type of a column.
columnIndex | index of the column. Indices start with 0. |
wxString wxSQLite3ResultSet::GetDatabaseName | ( | int | columnIndex | ) | const |
Get the database name of a column.
columnIndex | index of the column. Indices start with 0. |
This method is only available if SQLite has been compiled with SQLITE_ENABLE_COLUMN_METADATA defined.
wxDateTime wxSQLite3ResultSet::GetDate | ( | const wxString & | columnName | ) | const |
Get a column as a date value using the column name.
Date value is expected to be in format 'YYYY-MM-DD'.
columnName | name of the column |
wxDateTime wxSQLite3ResultSet::GetDate | ( | int | columnIndex | ) | const |
Get a column as a date value using the column index.
Date value is expected to be in format 'YYYY-MM-DD'.
columnIndex | index of the column. Indices start with 0. |
wxDateTime wxSQLite3ResultSet::GetDateTime | ( | const wxString & | columnName | ) | const |
Get a column as a date and time value using the column name.
Date value is expected to be in format 'YYYY-MM-DD HH:MM:SS'.
columnName | name of the column |
wxDateTime wxSQLite3ResultSet::GetDateTime | ( | int | columnIndex | ) | const |
Get a column as a date and time value using the column index.
Date value is expected to be in format 'YYYY-MM-DD HH:MM:SS'.
columnIndex | index of the column. Indices start with 0. |
wxString wxSQLite3ResultSet::GetDeclaredColumnType | ( | int | columnIndex | ) | const |
Get the declared type of a column.
columnIndex | index of the column. Indices start with 0. |
double wxSQLite3ResultSet::GetDouble | ( | const wxString & | columnName, |
double | nullValue = 0.0 ) const |
Get a column as a double using the column name.
columnName | name of the column |
nullValue | value to be returned in case the column is NULL |
double wxSQLite3ResultSet::GetDouble | ( | int | columnIndex, |
double | nullValue = 0.0 ) const |
Get a column as a double using the column index.
columnIndex | index of the column. Indices start with 0. |
nullValue | value to be returned in case the column is NULL |
wxString wxSQLite3ResultSet::GetExpandedSQL | ( | ) | const |
Get the original SQL string for preparing the query statement with expanded bound parameters.
int wxSQLite3ResultSet::GetInt | ( | const wxString & | columnName, |
int | nullValue = 0 ) const |
Get a column as an integer using the column name.
columnName | name of the column |
nullValue | value to be returned in case the column is NULL |
int wxSQLite3ResultSet::GetInt | ( | int | columnIndex, |
int | nullValue = 0 ) const |
Get a column as an integer using the column index.
columnIndex | index of the column. Indices start with 0. |
nullValue | value to be returned in case the column is NULL |
wxLongLong wxSQLite3ResultSet::GetInt64 | ( | const wxString & | columnName, |
wxLongLong | nullValue = 0 ) const |
Get a column as a 64-bit integer using the column name.
columnName | name of the column |
nullValue | value to be returned in case the column is NULL |
wxLongLong wxSQLite3ResultSet::GetInt64 | ( | int | columnIndex, |
wxLongLong | nullValue = 0 ) const |
Get a column as a 64-bit integer using the column index.
columnIndex | index of the column. Indices start with 0. |
nullValue | value to be returned in case the column is NULL |
wxDateTime wxSQLite3ResultSet::GetJulianDayNumber | ( | const wxString & | columnName | ) | const |
Get a column as a date and time value using the column name.
The date/time value is expected to be stored in the database as a Julian Day Number (i.e. double).
columnName | name of the column |
wxDateTime wxSQLite3ResultSet::GetJulianDayNumber | ( | int | columnIndex | ) | const |
Get a column as a date and time value using the column index.
The date/time value is expected to be stored in the database as a Julian Day Number (i.e. double).
columnIndex | index of the column. Indices start with 0. |
wxDateTime wxSQLite3ResultSet::GetNumericDateTime | ( | const wxString & | columnName | ) | const |
Get a column as a date and time value using the column name.
The date/time value is expected to be stored in the database as a numeric value (i.e. int64), measured in milliseconds since 1970-01-01.
columnName | name of the column |
wxDateTime wxSQLite3ResultSet::GetNumericDateTime | ( | int | columnIndex | ) | const |
Get a column as a date and time value using the column index.
The date/time value is expected to be stored in the database as a numeric value (i.e. int64), measured in milliseconds since 1970-01-01.
columnIndex | index of the column. Indices start with 0. |
wxString wxSQLite3ResultSet::GetOriginName | ( | int | columnIndex | ) | const |
Get the origin name of a column.
columnIndex | index of the column. Indices start with 0. |
This method is only available if SQLite has been compiled with SQLITE_ENABLE_COLUMN_METADATA defined.
wxString wxSQLite3ResultSet::GetSQL | ( | ) | const |
Get the original SQL string for preparing the query statement.
wxString wxSQLite3ResultSet::GetString | ( | const wxString & | columnName, |
const wxString & | nullValue = wxEmptyString ) const |
Get a column as a string using the column name.
columnName | name of the column |
nullValue | value to be returned in case the column is NULL |
wxString wxSQLite3ResultSet::GetString | ( | int | columnIndex, |
const wxString & | nullValue = wxEmptyString ) const |
Get a column as a string using the column index.
columnIndex | index of the column. Indices start with 0. |
nullValue | value to be returned in case the column is NULL |
wxString wxSQLite3ResultSet::GetTableName | ( | int | columnIndex | ) | const |
Get the table name of a column.
columnIndex | index of the column. Indices start with 0. |
This method is only available if SQLite has been compiled with SQLITE_ENABLE_COLUMN_METADATA defined.
wxDateTime wxSQLite3ResultSet::GetTime | ( | const wxString & | columnName | ) | const |
Get a column as a time value using the column name.
Date value is expected to be in format 'HH:MM:SS'.
columnName | name of the column |
wxDateTime wxSQLite3ResultSet::GetTime | ( | int | columnIndex | ) | const |
Get a column as a time value using the column index.
Date value is expected to be in format 'HH:MM:SS'.
columnIndex | index of the column. Indices start with 0. |
wxDateTime wxSQLite3ResultSet::GetTimestamp | ( | const wxString & | columnName | ) | const |
Get a column as a timestamp value using the column name.
Date value is expected to be in format 'YYYY-MM-DD HH:MM:SS.mmm'.
columnName | name of the column |
wxDateTime wxSQLite3ResultSet::GetTimestamp | ( | int | columnIndex | ) | const |
Get a column as a timestamp value using the column index.
Date value is expected to be in format 'YYYY-MM-DD HH:MM:SS.mmm'.
columnIndex | index of the column. Indices start with 0. |
wxDateTime wxSQLite3ResultSet::GetUnixDateTime | ( | const wxString & | columnName | ) | const |
Get a column as a date and time value using the column name.
The date/time value is expected to be stored in the database as an integer value (i.e. int64), measured in seconds since 1970-01-01.
columnName | name of the column |
wxDateTime wxSQLite3ResultSet::GetUnixDateTime | ( | int | columnIndex | ) | const |
Get a column as a date and time value using the column index.
The date/time value is expected to be stored in the database as an integer value (i.e. int64), measured in seconds since 1970-01-01.
columnIndex | index of the column. Indices start with 0. |
bool wxSQLite3ResultSet::IsNull | ( | const wxString & | columnName | ) | const |
Check whether a column has a NULL value using the column name.
columnName | name of the column |
bool wxSQLite3ResultSet::IsNull | ( | int | columnIndex | ) | const |
Check whether a column has a NULL value using the column index.
columnIndex | index of the column. Indices start with 0. |
bool wxSQLite3ResultSet::IsOk | ( | ) | const |
Validate associated SQLite database and statement.
bool wxSQLite3ResultSet::NextRow | ( | ) |
Retrieve next row of the result set.
Advances the cursor to the next row. On creation of the result set the cursor is positioned BEFORE the first row, i.e. the first call to this method makes the first row available for processing.
wxSQLite3ResultSet & wxSQLite3ResultSet::operator= | ( | const wxSQLite3ResultSet & | resultSet | ) |
Assignment constructor.