The QSqlIndex class provides functions to manipulate and describe database indexes. 更多...
| 头: |
#include <QSqlIndex>
|
| CMake: |
find_package(Qt6 REQUIRED COMPONENTS Sql)
target_link_libraries(mytarget PRIVATE Qt6::Sql)
|
| qmake: |
QT += sql
|
| 继承: | QSqlRecord |
(从 6.8 起)
cursorName
: QString
(从 6.8 起)
name
: QString
| QSqlIndex (const QString & cursorname = QString(), const QString & name = QString()) | |
| QSqlIndex (const QSqlIndex & other ) | |
(从 6.6 起)
|
QSqlIndex (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 ) |
(从 6.6 起)
QSqlIndex &
|
operator= (QSqlIndex && other ) |
| QSqlIndex & | operator= (const QSqlIndex & other ) |
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.
[since 6.8]
cursorName
:
QString
This property holds the name of the cursor which the index is associated with.
该特性在 Qt 6.8 引入。
访问函数:
| QString | cursorName () const |
| void | setCursorName (const QString & cursorName ) |
[since 6.8]
name
:
QString
This property holds the name of the index.
该特性在 Qt 6.8 引入。
访问函数:
| QString | name () const |
| void | setName (const QString & name ) |
[explicit]
QSqlIndex::
QSqlIndex
(const
QString
&
cursorname
= QString(), const
QString
&
name
= QString())
Constructs an empty index using the cursor name cursorname and index name name .
构造副本为 other .
[noexcept, since 6.6]
QSqlIndex::
QSqlIndex
(
QSqlIndex
&&
other
)
Move-constructs a new QSqlIndex from other .
注意: The moved-from object other is placed in a partially-formed state, in which the only valid operations are destruction and assignment of a new value.
该函数在 Qt 6.6 引入。
[noexcept]
QSqlIndex::
~QSqlIndex
()
销毁对象并释放任何分配资源。
Appends the field field to the list of indexed fields. The field is appended with an ascending sort order.
这是重载函数。
Appends the field field to the list of indexed fields. The field is appended with an ascending sort order, unless desc 为 true。
Returns the cursorName.
注意: Getter function for property cursorName.
另请参阅 setCursorName ().
返回
true
if field
i
in the index is sorted in descending order; otherwise returns
false
.
Returns the name.
注意: Getter function for property name.
另请参阅 setName ().
设置 cursorName to cursorName .
注意: setter 函数对于特性 cursorName .
另请参阅 cursorName ().
若 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.
另请参阅 isDescending ().
设置 name to name .
注意: setter 函数对于特性 name .
另请参阅 name ().
[noexcept, since 6.6]
QSqlIndex
&QSqlIndex::
operator=
(
QSqlIndex
&&
other
)
移动赋值 other 到此 QSqlIndex 实例。
注意: The moved-from object other is placed in a partially-formed state, in which the only valid operations are destruction and assignment of a new value.
该函数在 Qt 6.6 引入。
Sets the index equal to other .