Table Of Contents

Previous topic

QSqlRecord

Next topic

QSqlField

QSqlIndex

Inheritance diagram of QSqlIndex

Synopsis

Functions

Detailed Description

The 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.

class PySide.QtSql.QSqlIndex(other)
class PySide.QtSql.QSqlIndex([cursorName=""[, name=""]])
Parameters:

Constructs a copy of other .

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

PySide.QtSql.QSqlIndex.append(field, desc)
Parameters:

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.

PySide.QtSql.QSqlIndex.createField(i, prefix, verbose)
Parameters:
  • iPySide.QtCore.int
  • prefix – unicode
  • verbosePySide.QtCore.bool
Return type:

unicode

PySide.QtSql.QSqlIndex.cursorName()
Return type:unicode

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

PySide.QtSql.QSqlIndex.isDescending(i)
Parameters:iPySide.QtCore.int
Return type:PySide.QtCore.bool

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

PySide.QtSql.QSqlIndex.name()
Return type:unicode

Returns the name of the index.

PySide.QtSql.QSqlIndex.setCursorName(cursorName)
Parameters:cursorName – unicode

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

PySide.QtSql.QSqlIndex.setDescending(i, desc)
Parameters:
  • iPySide.QtCore.int
  • descPySide.QtCore.bool

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.

PySide.QtSql.QSqlIndex.setName(name)
Parameters:name – unicode

Sets the name of the index to name .