PySide.QtSql.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.
| 参数: |
|
|---|
构造副本为 other .
Constructs an empty index using the cursor name cursorname and index name name .
| 参数: |
|
|---|
这是重载函数。
Appends the field field to the list of indexed fields. The field is appended with an ascending sort order, unless desc 为 true。
| 参数: |
|
|---|---|
| 返回类型: |
unicode |
| 返回类型: | unicode |
|---|
Returns the name of the cursor which the index is associated with.
| 参数: | i – PySide.QtCore.int |
|---|---|
| 返回类型: | PySide.QtCore.bool |
Returns true if field i in the index is sorted in descending order; otherwise returns false.
| 返回类型: | unicode |
|---|
Returns the name of the index.
| 参数: | cursorName – unicode |
|---|
Sets the name of the cursor that the index is associated with to 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.
| 参数: | name – unicode |
|---|
Sets the name of the index to name .