Changeset 72cd3af for src/orm/ormrecord.h
- Timestamp:
- 01/21/10 13:54:58 (13 years ago)
- Branches:
- master, qt5
- Children:
- 606c155
- Parents:
- e662750
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/orm/ormrecord.h
re662750 r72cd3af 121 121 if (!query.exec()) 122 122 { 123 throw newOrmSqlException(query.lastError().text());123 throw OrmSqlException(query.lastError().text()); 124 124 } 125 125 } … … 127 127 if (!query.next()) 128 128 { 129 throw newOrmNoObjectException();129 throw OrmNoObjectException(); 130 130 } 131 131 … … 141 141 { 142 142 qDebug() << "Error: " << query.lastError().driverText() << "; Type: " << query.lastError().type(); 143 throw newOrmSqlException(query.lastError().text());143 throw OrmSqlException(query.lastError().text()); 144 144 } 145 145 else
Note: See TracChangeset
for help on using the changeset viewer.