📄 qsqlquery.3qt
字号:
'\" t.TH QSqlQuery 3qt "11 October 2001" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS. All rights reserved. See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQSqlQuery \- Means of executing and manipulating SQL statements.PP\fC#include <qsqlquery.h>\fR.PPInherited by QSqlCursor..PP.SS "Public Members".in +1c.ti -1c.BI "\fBQSqlQuery\fR ( QSqlResult * r )".br.ti -1c.BI "\fBQSqlQuery\fR ( const QString & query = QString::null, QSqlDatabase * db = 0 )".br.ti -1c.BI "\fBQSqlQuery\fR ( const QSqlQuery & other )".br.ti -1c.BI "QSqlQuery & \fBoperator=\fR ( const QSqlQuery & other )".br.ti -1c.BI "virtual \fB~QSqlQuery\fR ()".br.ti -1c.BI "bool \fBisValid\fR () const".br.ti -1c.BI "bool \fBisActive\fR () const".br.ti -1c.BI "bool \fBisNull\fR ( int field ) const".br.ti -1c.BI "int \fBat\fR () const".br.ti -1c.BI "QString \fBlastQuery\fR () const".br.ti -1c.BI "int \fBnumRowsAffected\fR () const".br.ti -1c.BI "QSqlError \fBlastError\fR () const".br.ti -1c.BI "bool \fBisSelect\fR () const".br.ti -1c.BI "int \fBsize\fR () const".br.ti -1c.BI "const QSqlDriver * \fBdriver\fR () const".br.ti -1c.BI "const QSqlResult * \fBresult\fR () const".br.ti -1c.BI "virtual bool \fBexec\fR ( const QString & query )".br.ti -1c.BI "virtual QVariant \fBvalue\fR ( int i ) const".br.ti -1c.BI "virtual bool \fBseek\fR ( int i, bool relative = FALSE )".br.ti -1c.BI "virtual bool \fBnext\fR ()".br.ti -1c.BI "virtual bool \fBprev\fR ()".br.ti -1c.BI "virtual bool \fBfirst\fR ()".br.ti -1c.BI "virtual bool \fBlast\fR ()".br.in -1c.SS "Protected Members".in +1c.ti -1c.BI "virtual void \fBbeforeSeek\fR ()".br.ti -1c.BI "virtual void \fBafterSeek\fR ()".br.in -1c.SH DESCRIPTIONThe QSqlQuery class provides a means of executing and manipulating SQL statements..PPQSqlQuery encapsulates the functionality involved in creating, navigating and retrieving data from SQL queries which are executed on a QSqlDatabase. It can be used to execute DML (data manipulation language) statements, e.g. \fCSELECT\fR, \fCINSERT\fR, \fCUPDATE\fR and \fCDELETE\fR, and also DDL (data definition language) statements, e.g. \fCCREATE TABLE\fR. It can also be used to execute database-specific commands which are not standard SQL (e.g. \fCSET DATESTYLE=ISO\fR for PostgreSQL)..PPSuccessfully executed SQL statements set the query to an active state (isActive() returns TRUE) otherwise the query is set to an inactive state. In either case, when executing a new SQL statement, the query is positioned on an invalid record; an active query must be navigated to a valid record (so that isValid() returns TRUE) before values can be retrieved..PPNavigating records is performed with the following functions:.TPnext().TPprev().TPfirst().TPlast().TP\fC\fRseek(int).PPThese functions allow the programmer to move forward, backward or arbitrarily through the records returned by the query. Once an active query is positioned on a valid record, data can be retrieved using value(). All data is transferred from the SQL backend using QVariants..PPFor example:.PP.nf.br QSqlQuery query( "select name from customer;" );.br while ( query.next() ) {.br QString name = query.value(0).toString();.br doSomething( name );.br }.br.fi.PPTo access the data returned by a query, use the value() method. Each field in the data returned by a SELECT statement is accessed by passing the index number of the desired field, starting with 0. There are no methods to access a field by name to make sure the usage of QSqlQuery is as optimal as possible (see QSqlCursor for a more flexible interface for selecting data from a table or view in the database)..PPSee also QSqlDatabase, QSqlCursor, QVariant and Database Classes..SH MEMBER FUNCTION DOCUMENTATION.SH "QSqlQuery::QSqlQuery ( QSqlResult * r )"Creates a QSqlQuery object which uses the QSqlResult \fIr\fR to communicate with a database..SH "QSqlQuery::QSqlQuery ( const QString & query = QString::null, QSqlDatabase * db = 0 )"Creates a QSqlQuery object using the SQL \fIquery\fR and the database \fIdb\fR. If \fIdb\fR is 0, (the default), the application's default database is used..PPSee also QSqlDatabase..SH "QSqlQuery::QSqlQuery ( const QSqlQuery & other )"Constructs a copy of \fIother\fR..SH "QSqlQuery::~QSqlQuery ()\fC [virtual]\fR"Destroys the object and frees any allocated resources..SH "void QSqlQuery::afterSeek ()\fC [virtual protected]\fR"Protected virtual function called after the internal record pointer is moved to a new record. The default implementation does nothing..SH "int QSqlQuery::at () const"Returns the current internal position of the query. The first record is at position zero. If the position is invalid, a QSql::Location will be returned indicating the invalid position..PPSee also isValid()..PPExample: sql/overview/navigating/main.cpp..SH "void QSqlQuery::beforeSeek ()\fC [virtual protected]\fR"Protected virtual function called before the internal record pointer is moved to a new record. The default implementation does nothing..SH "const QSqlDriver * QSqlQuery::driver () const"Returns a pointer to the database driver associated with the query..SH "bool QSqlQuery::exec ( const QString & query )\fC [virtual]\fR"Executes the SQL \fIquery\fR. Returns TRUE if the query was successful sets the query state to active, otherwise returns FALSE and the query becomes inactive. The \fIquery\fR string must use syntax appropriate for the SQL database being queried, for example, standard SQL..PPAfter the query is executed, the query is positioned on an invalid record, and must be navigated to a valid record before data values can be retrieved..PPSee also isActive(), isValid(), next(), prev(), first(), last() and seek()..PPExamples:.)l sql/overview/basicbrowsing/main.cpp, sql/overview/basicbrowsing2/main.cpp and sql/overview/basicdatamanip/main.cpp..SH "bool QSqlQuery::first ()\fC [virtual]\fR"Retrieves the first record in the result, if available, and positions the query on the retrieved record. Note that the result must be in an active state and isSelect() must return TRUE before calling this function or it will do nothing and return FALSE. Returns TRUE if successful. If unsuccessful the query position is set to an invalid position and FALSE is returned..PPExample: sql/overview/navigating/main.cpp..SH "bool QSqlQuery::isActive () const"Returns TRUE if the query is currently active, otherwise returns FALSE..PPExamples:.)l sql/overview/basicbrowsing/main.cpp, sql/overview/basicbrowsing2/main.cpp, sql/overview/basicdatamanip/main.cpp, sql/overview/navigating/main.cpp and sql/overview/retrieve1/main.cpp..SH "bool QSqlQuery::isNull ( int field ) const"Returns TRUE if \fIfield\fR is currently NULL, otherwise returns FALSE. The query must be active and positioned on a valid record before calling this function otherwise it returns FALSE. Note that, for some drivers, isNull() will not return accurate information until after an attempt is made to retrieve data..PPSee also isActive(), isValid() and value()..SH "bool QSqlQuery::isSelect () const"Returns TRUE if the current query is a \fCSELECT\fR statement, otherwise returns FALSE..SH "bool QSqlQuery::isValid () const"Returns TRUE if the query is currently positioned on a valid record, otherwise returns FALSE..SH "bool QSqlQuery::last ()\fC [virtual]\fR"Retrieves the last record in the result, if available, and positions the query on the retrieved record. Note that the result must be in an active state and isSelect() must return TRUE before calling this function or it will do nothing and return FALSE. Returns TRUE if successful. If unsuccessful the query position is set to an invalid position and FALSE is returned..PPExample: sql/overview/navigating/main.cpp..SH "QSqlError QSqlQuery::lastError () const"Returns error information about the last error (if any) that occurred..PPSee also QSqlError..SH "QString QSqlQuery::lastQuery () const"Returns the text of the current query being used, or QString::null if there is no current query text..SH "bool QSqlQuery::next ()\fC [virtual]\fR"Retrieves the next record in the result, if available, and positions the query on the retrieved record. Note that the result must be in an active state and isSelect() must return TRUE before calling this function or it will do nothing and return FALSE..PPThe following rules apply:.TPIf the result is currently located before the first record, e.g. immediately after a query is executed, an attempt is made to retrieve the first record..TPIf the result is currently located after the last record, there is no change and FALSE is returned..TPIf the result is located somewhere in the middle, an attempt is made to retrieve the next record..PPIf the record could not be retrieved, the result is positioned after the last record and FALSE is returned. If the record is successfully retrieved, TRUE is returned..PPSee also at() and isValid()..PPExamples:.)l sql/overview/basicbrowsing/main.cpp, sql/overview/basicbrowsing2/main.cpp, sql/overview/retrieve1/main.cpp, sql/overview/subclass3/main.cpp, sql/overview/subclass4/main.cpp, sql/overview/subclass5/main.cpp and sql/sqltable/main.cpp..SH "int QSqlQuery::numRowsAffected () const"Returns the number of rows affected by the result's SQL statement, or -1 if it cannot be determined. Note that for SELECT statements, this value will be the same as size(). If the query is not active (isActive() returns FALSE), -1 is returned..PPSee also size() and QSqlDriver::hasFeature()..PPExamples:.)l sql/overview/basicbrowsing2/main.cpp and sql/overview/basicdatamanip/main.cpp..SH "QSqlQuery & QSqlQuery::operator= ( const QSqlQuery & other )"Assigns \fIother\fR to the query..SH "bool QSqlQuery::prev ()\fC [virtual]\fR"Retrieves the previous record in the result, if available, and positions the query on the retrieved record. Note that the result must be in an active state and isSelect() must return TRUE before calling this function or it will do nothing and return FALSE..PPThe following rules apply:.TPIf the result is currently located before the first record, there is no change and FALSE is returned..TPIf the result is currently located after the last record, an attempt is made to retrieve the last record..TPIf the result is somewhere in the middle, an attempt is made to retrieve the previous record..PPIf the record could not be retrieved, the result is positioned before the first record and FALSE is returned. If the record is successfully retrieved, TRUE is returned..PPSee also at()..SH "const QSqlResult * QSqlQuery::result () const"Returns a pointer to the result associated with the query..SH "bool QSqlQuery::seek ( int i, bool relative = FALSE )\fC [virtual]\fR"Retrieves the record at position (or offset) \fIi\fR, if available, and positions the query on the retrieved record. The first record is at position zero. Note that the query must be in an active state and isSelect() must return TRUE before calling this function..PPThe following rules apply:.PPIf \fIrelative\fR is FALSE (the default), the following rules apply:.TPIf \fIi\fR is negative, the result is positioned before the first record and FALSE is returned..TPOtherwise, an attempt is made to move to the record at position \fIi\fR. If the record at position \fIi\fR could not be retrieved, the result is positioned after the last record and FALSE is returned. If the record is successfully retrieved, TRUE is returned..PPIf \fIrelative\fR is TRUE, the following rules apply:.TPIf the result is currently positioned before the first record or on the first record, and \fIi\fR is negative, there is no change, and FALSE is returned..TPIf the result is currently located after the last record, and \fIi\fR is positive, there is no change, and FALSE is returned..TPIf the result is currently located somewhere in the middle, and the relative offset \fIi\fR moves the result below zero, the result is positioned before the first record and FALSE is returned..TPOtherwise, an attempt is made to move to the record \fIi\fR records ahead of the current record (or \fIi\fR records behind the current record if \fIi\fR is negative). If the record at offset \fIi\fR could not be retrieved, the result is positioned after the last record if \fIi\fR >= 0, (or before the first record if \fIi\fR is negative), and FALSE is returned. If the record is successfully retrieved, TRUE is returned..PPExample: sql/overview/navigating/main.cpp..SH "int QSqlQuery::size () const"Returns the size of the result, (number of rows returned), or -1 if the size cannot be determined or the database does not support reporting information about query sizes. Note that for non-SELECT statements (isSelect() returns FALSE), size() will return -1. If the query is not active (isActive() returns FALSE), -1 is returned..PPTo determine the number of rows affected by a non-SELECT statement, use numRowsAffected()..PPSee also isActive(), numRowsAffected() and QSqlDriver::hasFeature()..PPExample: sql/overview/navigating/main.cpp..SH "QVariant QSqlQuery::value ( int i ) const\fC [virtual]\fR"Returns the value of field \fIi\fR (zero based)..PPThe fields are numbered from left to right using the text of the \fCSELECT\fR statement, e.g. in "select forename, surname from people;", field 0 is forename and field 1 is surname. Using \fCSELECT *\fR is not recommended because the order of the fields in the query is undefined..PPAn invalid QVariant is returned if field \fIi\fR does not exist, if the query is inactive, or if the query is positioned on an invalid record..PPSee also prev(), next(), first(), last(), seek(), isActive() and isValid()..PPExamples:.)l sql/overview/basicbrowsing/main.cpp, sql/overview/basicbrowsing2/main.cpp, sql/overview/retrieve1/main.cpp, sql/overview/subclass3/main.cpp, sql/overview/subclass4/main.cpp, sql/overview/subclass5/main.cpp and sql/sqltable/main.cpp..SH "SEE ALSO".BR http://doc.trolltech.com/qsqlquery.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com. See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qsqlquery.3qt) and the Qtversion (3.0.0).
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -