The QSqlError class provides SQL database error information. 更多...
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 () 和 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.
This enum type describes the context in which the error occurred, e.g., a connection error, a statement error, etc.
| 常量 | 值 | 描述 |
|---|---|---|
| QSqlError.NoError | 0 | 没有发生错误。 |
| QSqlError.ConnectionError | 1 | Connection error. |
| QSqlError.StatementError | 2 | SQL statement syntax error. |
| QSqlError.TransactionError | 3 | Transaction failed error. |
| QSqlError.UnknownError | 4 | Unknown error. |
Constructs an error containing the driver error text driverText , the database-specific error text databaseText , the type type and the optional error number number .
Creates a copy of other .
Returns the text of the error as reported by the database. This may contain database-specific descriptions; it may be empty.
另请参阅 setDatabaseText (), driverText (),和 text ().
Returns the text of the error as reported by the driver. This may contain database-specific descriptions. It may also be empty.
另请参阅 setDriverText (), databaseText (),和 text ().
Returns true if an error is set, otherwise false.
范例:
QSqlQueryModel model; model.setQuery("select * from myTable"); if (model.lastError().isValid()) qDebug() << model.lastError();
另请参阅 type ().
Returns the database-specific error number, or -1 if it cannot be determined.
另请参阅 setNumber ().
Sets the database error text to the value of databaseText .
另请参阅 databaseText (), setDriverText (),和 text ().
Sets the driver error text to the value of driverText .
另请参阅 driverText (), setDatabaseText (),和 text ().
Sets the database-specific error number to number .
另请参阅 number ().
Sets the error type to the value of type .
另请参阅 type ().
This is a convenience function that returns databaseText () 和 driverText () concatenated into a single string.
另请参阅 driverText () 和 databaseText ().
Returns the error type, or -1 if the type cannot be determined.
另请参阅 setType ().