QSqlIndex Class Reference |
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.
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 4.6-snapshot | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com