The QSqlIndex class provides functions to manipulate and describe database indexes. More...
#include <QSqlIndex>
Inherits: QSqlRecord.
QSqlIndex ( const QString & cursorname = QString(), const QString & name = QString() ) | |
QSqlIndex ( const QSqlIndex & other ) | |
~QSqlIndex () | |
void | append ( const QSqlField & field ) |
void | append ( const QSqlField & field, bool desc ) |
QString | cursorName () const |
bool | isDescending ( int i ) const |
QString | name () const |
void | setCursorName ( const QString & cursorName ) |
void | setDescending ( int i, bool desc ) |
void | setName ( const QString & name ) |
QSqlIndex & | operator= ( const QSqlIndex & other ) |
The QSqlIndex class provides functions to manipulate and describe database indexes.
An index refers to a single table or view in a database. Information about the fields that comprise the index can be used to generate SQL statements.
Constructs an empty index using the cursor name cursorname and index name name.
Constructs a copy of other.
Destroys the object and frees any allocated resources.
Appends the field field to the list of indexed fields. The field is appended with an ascending sort order.
This is an overloaded function.
Appends the field field to the list of indexed fields. The field is appended with an ascending sort order, unless desc is true.
Returns the name of the cursor which the index is associated with.
See also setCursorName().
Returns true if field i in the index is sorted in descending order; otherwise returns false.
Returns the name of the index.
See also setName().
Sets the name of the cursor that the index is associated with to cursorName.
See also cursorName().
If desc is true, field i is sorted in descending order. Otherwise, field i is sorted in ascending order (the default). If the field does not exist, nothing happens.
See also isDescending().
Sets the name of the index to name.
See also name().
Sets the index equal to other.
© 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.
All other trademarks are property of their respective owners. Privacy Policy
Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.
Alternatively, this document may be used under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation.