| 101 | }; |
| 102 | |
| 103 | QString SqlDatabase::error() |
| 104 | { |
| 105 | QString retMsg; |
| 106 | auto message = sqlite3_errmsg(_handle); |
| 107 | if (message != nullptr) |
| 108 | { |
| 109 | retMsg = QString::fromUtf8(message); |
| 110 | } |
| 111 | return retMsg; |
| 112 | } |
| 113 | |
| 114 | bool SqlDatabase::transaction() |
| 115 | { |
no outgoing calls
no test coverage detected