Home · All Classes · Modules

QSqlError Class Reference
[QtSql module]

The QSqlError class provides SQL database error information. More...

Types

Methods


Detailed Description

The QSqlError class provides SQL database error information.

A QSqlError object can provide database-specific error data, including the driverText() and databaseText() messages (or both concatenated together as text()), and the error number() and type(). The functions all have setters so that you can create and return QSqlError objects from your own classes, for example from your own SQL drivers.


Type Documentation

QSqlError.ErrorType

This enum type describes the context in which the error occurred, e.g., a connection error, a statement error, etc.

Constant Value Description
QSqlError.NoError 0 No error occurred.
QSqlError.ConnectionError 1 Connection error.
QSqlError.StatementError 2 SQL statement syntax error.
QSqlError.TransactionError 3 Transaction failed error.
QSqlError.UnknownError 4 Unknown error.

Method Documentation

QSqlError.__init__ (self, QString driverText = '', QString databaseText = '', ErrorType type = QSqlError.NoError, int number = -1)

Constructs an error containing the driver error text driverText, the database-specific error text databaseText, the type type and the optional error number number.

QSqlError.__init__ (self, QSqlError other)

Creates a copy of other.

QString QSqlError.databaseText (self)

Returns the text of the error as reported by the database. This may contain database-specific descriptions; it may be empty.

See also setDatabaseText(), driverText(), and text().

QString QSqlError.driverText (self)

Returns the text of the error as reported by the driver. This may contain database-specific descriptions. It may also be empty.

See also setDriverText(), databaseText(), and text().

bool QSqlError.isValid (self)

Returns true if an error is set, otherwise false.

Example:

 QSqlQueryModel model;
 model.setQuery("select * from myTable");
 if (model.lastError().isValid())
     qDebug() << model.lastError();

See also type().

int QSqlError.number (self)

Returns the database-specific error number, or -1 if it cannot be determined.

See also setNumber().

QSqlError.setDatabaseText (self, QString databaseText)

Sets the database error text to the value of databaseText.

See also databaseText(), setDriverText(), and text().

QSqlError.setDriverText (self, QString driverText)

Sets the driver error text to the value of driverText.

See also driverText(), setDatabaseText(), and text().

QSqlError.setNumber (self, int number)

Sets the database-specific error number to number.

See also number().

QSqlError.setType (self, ErrorType type)

Sets the error type to the value of type.

See also type().

QString QSqlError.text (self)

This is a convenience function that returns databaseText() and driverText() concatenated into a single string.

See also driverText() and databaseText().

ErrorType QSqlError.type (self)

Returns the error type, or -1 if the type cannot be determined.

See also setType().


PyQt 4.12.3 for X11Copyright © Riverbank Computing Ltd and The Qt Company 2015Qt 4.8.7