| 47 | " for db path=" + full_path); |
| 48 | } |
| 49 | void sqlite::Dbi::commit_txn() { |
| 50 | exec("COMMIT TRANSACTION", "saving database data failed. Disk unplugged or out of disk space?"); |
| 51 | } |
| 52 | void sqlite::Dbi::begin_txn() { |
| 53 | exec("BEGIN IMMEDIATE TRANSACTION", |
| 54 | "modifying database impossible. Disk read-only or database used by other running instance?"); |
no outgoing calls
no test coverage detected