Qt 4.8
|
#include <qsql_mysql.h>
Public Functions | |
QVariant | handle () const |
Returns the low-level database handle for this result set wrapped in a QVariant or an invalid QVariant if there is no handle. More... | |
QMYSQLResult (const QMYSQLDriver *db) | |
~QMYSQLResult () | |
Public Functions inherited from QSqlResult | |
virtual | ~QSqlResult () |
Destroys the object and frees any allocated resources. More... | |
Protected Functions | |
void | cleanup () |
QVariant | data (int field) |
Returns the data for field index in the current row as a QVariant. More... | |
bool | fetch (int i) |
Positions the result to an arbitrary (zero-based) row index. More... | |
bool | fetchFirst () |
Positions the result to the first record (row 0) in the result. More... | |
bool | fetchLast () |
Positions the result to the last record (last row) in the result. More... | |
bool | fetchNext () |
Positions the result to the next available record (row) in the result. More... | |
bool | isNull (int field) |
Returns true if the field at position index in the current row is null; otherwise returns false. More... | |
QVariant | lastInsertId () const |
Returns the object ID of the most recent inserted row if the database supports it. More... | |
bool | nextResult () |
int | numRowsAffected () |
Returns the number of rows affected by the last query executed, or -1 if it cannot be determined or if the query is a SELECT statement. More... | |
QSqlRecord | record () const |
Returns the current record if the query is active; otherwise returns an empty QSqlRecord. More... | |
bool | reset (const QString &query) |
Sets the result to use the SQL statement query for subsequent data retrieval. More... | |
int | size () |
Returns the size of the SELECT result, or -1 if it cannot be determined or if the query is not a SELECT statement. More... | |
void | virtual_hook (int id, void *data) |
Protected Functions inherited from QSqlResult | |
void | addBindValue (const QVariant &val, QSql::ParamType type) |
Binds the value val of parameter type paramType to the next available position in the current record (row). More... | |
int | at () const |
Returns the current (zero-based) row position of the result. More... | |
BindingSyntax | bindingSyntax () const |
Returns the binding syntax used by prepared queries. More... | |
virtual void | bindValue (int pos, const QVariant &val, QSql::ParamType type) |
Binds the value val of parameter type paramType to position index in the current record (row). More... | |
virtual void | bindValue (const QString &placeholder, const QVariant &val, QSql::ParamType type) |
Binds the value val of parameter type paramType to the placeholder name in the current record (row). More... | |
QSql::ParamType | bindValueType (const QString &placeholder) const |
Returns the parameter type for the value bound with the given placeholder name. More... | |
QSql::ParamType | bindValueType (int pos) const |
Returns the parameter type for the value bound at position index. More... | |
QVariant | boundValue (const QString &placeholder) const |
Returns the value bound by the given placeholder name in the current record (row). More... | |
QVariant | boundValue (int pos) const |
Returns the value bound at position index in the current record (row). More... | |
int | boundValueCount () const |
Returns the number of bound values in the result. More... | |
QString | boundValueName (int pos) const |
Returns the name of the bound value at position index in the current record (row). More... | |
QVector< QVariant > & | boundValues () const |
Returns a vector of the result's bound values for the current record (row). More... | |
void | clear () |
Clears the entire result set and releases any associated resources. More... | |
void | detachFromResultSet () |
const QSqlDriver * | driver () const |
Returns the driver associated with the result. More... | |
virtual bool | exec () |
Executes the query, returning true if successful; otherwise returns false. More... | |
bool | execBatch (bool arrayBind=false) |
Executes a prepared query in batch mode if the driver supports it, otherwise emulates a batch execution using bindValue() and exec(). More... | |
QString | executedQuery () const |
Returns the query that was actually executed. More... | |
virtual bool | fetchPrevious () |
Positions the result to the previous record (row) in the result. More... | |
bool | hasOutValues () const |
Returns true if at least one of the query's bound values is a QSql::Out or a QSql::InOut; otherwise returns false. More... | |
bool | isActive () const |
Returns true if the result has records to be retrieved; otherwise returns false. More... | |
bool | isForwardOnly () const |
Returns true if you can only scroll forward through the result set; otherwise returns false. More... | |
bool | isSelect () const |
Returns true if the current result is from a SELECT statement; otherwise returns false. More... | |
bool | isValid () const |
Returns true if the result is positioned on a valid record (that is, the result is not positioned before the first or after the last record); otherwise returns false. More... | |
QSqlError | lastError () const |
Returns the last error associated with the result. More... | |
QString | lastQuery () const |
Returns the current SQL query text, or an empty string if there isn't one. More... | |
bool | nextResult () |
QSql::NumericalPrecisionPolicy | numericalPrecisionPolicy () const |
virtual bool | prepare (const QString &query) |
Prepares the given query for execution; the query will normally use placeholders so that it can be executed repeatedly. More... | |
QSqlResult (const QSqlDriver *db) | |
Creates a QSqlResult using database driver db. More... | |
virtual bool | savePrepare (const QString &sqlquery) |
Prepares the given query, using the underlying database functionality where possible. More... | |
virtual void | setActive (bool a) |
This function is provided for derived classes to set the internal active state to active. More... | |
virtual void | setAt (int at) |
This function is provided for derived classes to set the internal (zero-based) row position to index. More... | |
virtual void | setForwardOnly (bool forward) |
Sets forward only mode to forward. More... | |
virtual void | setLastError (const QSqlError &e) |
This function is provided for derived classes to set the last error to error. More... | |
void | setNumericalPrecisionPolicy (QSql::NumericalPrecisionPolicy policy) |
virtual void | setQuery (const QString &query) |
Sets the current query for the result to query. More... | |
virtual void | setSelect (bool s) |
This function is provided for derived classes to indicate whether or not the current statement is a SQL SELECT statement. More... | |
Properties | |
QMYSQLResultPrivate * | d |
Friends | |
class | QMYSQLDriver |
class | QMYSQLResultPrivate |
Additional Inherited Members | |
Protected Types inherited from QSqlResult | |
enum | BindingSyntax { PositionalBinding, NamedBinding } |
This enum type specifies the different syntaxes for specifying placeholders in prepared queries. More... | |
enum | VirtualHookOperation { BatchOperation, DetachFromResultSet, SetNumericalPrecision, NextResult } |
Definition at line 69 of file qsql_mysql.h.
|
explicit |
Definition at line 407 of file qsql_mysql.cpp.
QMYSQLResult::~QMYSQLResult | ( | ) |
Definition at line 413 of file qsql_mysql.cpp.
|
protected |
Definition at line 429 of file qsql_mysql.cpp.
Referenced by reset(), virtual_hook(), and ~QMYSQLResult().
|
protectedvirtual |
Returns the data for field index in the current row as a QVariant.
This function is only called if the result is in an active state and is positioned on a valid record and index is non-negative. Derived classes must reimplement this function and return the value of field index, or QVariant() if it cannot be determined.
Implements QSqlResult.
Definition at line 589 of file qsql_mysql.cpp.
Referenced by virtual_hook().
|
protectedvirtual |
Positions the result to an arbitrary (zero-based) row index.
This function is only called if the result is in an active state. Derived classes must reimplement this function and position the result to the row index, and call setAt() with an appropriate value. Return true to indicate success, or false to signify failure.
Implements QSqlResult.
Definition at line 479 of file qsql_mysql.cpp.
Referenced by fetchFirst(), and fetchLast().
|
protectedvirtual |
Positions the result to the first record (row 0) in the result.
This function is only called if the result is in an active state. Derived classes must reimplement this function and position the result to the first record, and call setAt() with an appropriate value. Return true to indicate success, or false to signify failure.
Implements QSqlResult.
Definition at line 579 of file qsql_mysql.cpp.
|
protectedvirtual |
Positions the result to the last record (last row) in the result.
This function is only called if the result is in an active state. Derived classes must reimplement this function and position the result to the last record, and call setAt() with an appropriate value. Return true to indicate success, or false to signify failure.
Implements QSqlResult.
Definition at line 552 of file qsql_mysql.cpp.
|
protectedvirtual |
Positions the result to the next available record (row) in the result.
This function is only called if the result is in an active state. The default implementation calls fetch() with the next index. Derived classes can reimplement this function and position the result to the next record in some other way, and call setAt() with an appropriate value. Return true to indicate success, or false to signify failure.
Reimplemented from QSqlResult.
Definition at line 523 of file qsql_mysql.cpp.
Referenced by fetch(), fetchFirst(), and fetchLast().
|
virtual |
Returns the low-level database handle for this result set wrapped in a QVariant or an invalid QVariant if there is no handle.
The handle returned here is database-dependent, you should query the type name of the variant before accessing it.
This example retrieves the handle for a sqlite result:
This snippet returns the handle for PostgreSQL or MySQL:
Reimplemented from QSqlResult.
Definition at line 419 of file qsql_mysql.cpp.
|
protectedvirtual |
Returns true if the field at position index in the current row is null; otherwise returns false.
Implements QSqlResult.
Definition at line 678 of file qsql_mysql.cpp.
|
protectedvirtual |
Returns the object ID of the most recent inserted row if the database supports it.
An invalid QVariant will be returned if the query did not insert any value or if the database does not report the id back. If more than one row was touched by the insert, the behavior is undefined.
Note that for Oracle databases the row's ROWID will be returned, while for MySQL databases the row's auto-increment field will be returned.
Reimplemented from QSqlResult.
Definition at line 743 of file qsql_mysql.cpp.
|
protected |
Definition at line 787 of file qsql_mysql.cpp.
Referenced by virtual_hook().
|
protectedvirtual |
Returns the number of rows affected by the last query executed, or -1 if it cannot be determined or if the query is a SELECT
statement.
Implements QSqlResult.
Definition at line 738 of file qsql_mysql.cpp.
|
protectedvirtual |
Returns the current record if the query is active; otherwise returns an empty QSqlRecord.
The default implementation always returns an empty QSqlRecord.
Reimplemented from QSqlResult.
Definition at line 762 of file qsql_mysql.cpp.
|
protectedvirtual |
Sets the result to use the SQL statement query for subsequent data retrieval.
Derived classes must reimplement this function and apply the query to the database. This function is only called after the result is set to an inactive state and is positioned before the first record of the new result. Derived classes should return true if the query was successful and ready to be used, or false otherwise.
Implements QSqlResult.
Definition at line 686 of file qsql_mysql.cpp.
|
protectedvirtual |
Returns the size of the SELECT
result, or -1 if it cannot be determined or if the query is not a SELECT
statement.
Implements QSqlResult.
Definition at line 723 of file qsql_mysql.cpp.
|
protectedvirtual |
Reimplemented from QSqlResult.
Definition at line 839 of file qsql_mysql.cpp.
|
friend |
Definition at line 71 of file qsql_mysql.h.
|
friend |
Definition at line 72 of file qsql_mysql.h.
Referenced by QMYSQLResult().
|
private |
Definition at line 99 of file qsql_mysql.h.
Referenced by cleanup(), data(), fetch(), fetchLast(), fetchNext(), handle(), isNull(), lastInsertId(), nextResult(), numRowsAffected(), QMYSQLResult(), record(), reset(), size(), virtual_hook(), and ~QMYSQLResult().