Qt:Документация 4.3.2/qsqlindex

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QSqlIndex Class Reference
[модуль QtSql ]

The QSqlIndex class provides functions to manipulate and describe database indexes. More...

 #include <QSqlIndex>

Inherits QSqlRecord.

[править] Открытые функции

  • 28 открытых функций унаследованных от QSqlRecord

[править] Подробное описание

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, or to affect the behavior of a QSqlCursor object.


[править] Описание функций-членов

[править]
QSqlIndex::QSqlIndex ( const QString & cursorname = QString(), const QString & name = QString() )

Constructs an empty index using the cursor name cursorname and index name name.

[править]
QSqlIndex::QSqlIndex ( const QSqlIndex & other )

Constructs a copy of other.

[править]
QSqlIndex::~QSqlIndex ()

Destroys the object and frees any allocated resources.

[править]
void QSqlIndex::append ( const QSqlField & field )

Appends the field field to the list of indexed fields. The field is appended with an ascending sort order.

[править]
void QSqlIndex::append ( const QSqlField & field, bool desc )

This is an overloaded member function, provided for convenience.

Appends the field field to the list of indexed fields. The field is appended with an ascending sort order, unless desc is true.

[править]
QString QSqlIndex::cursorName () const

Returns the name of the cursor which the index is associated with.

See also setCursorName().

[править]
bool QSqlIndex::isDescending ( int i ) const

Returns true if field i in the index is sorted in descending order; otherwise returns false.

[править]
QString QSqlIndex::name () const

Returns the name of the index.

See also setName().

[править]
void QSqlIndex::setCursorName ( const QString & cursorName )

Sets the name of the cursor that the index is associated with to cursorName.

See also cursorName().

[править]
void QSqlIndex::setDescending ( int i, bool desc )

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().

[править]
void QSqlIndex::setName ( const QString & name )

Sets the name of the index to name.

See also name().

[править]
QSqlIndex & QSqlIndex::operator= ( const QSqlIndex & other )

Sets the index equal to other.


Copyright © 2007 Trolltech Trademarks
Qt 4.3.2