some more bugs and docs

This commit is contained in:
Adam D. Ruppe 2024-02-12 07:15:30 -05:00
parent f3fb1373eb
commit 402c28a73e
7 changed files with 771 additions and 339 deletions

View file

@ -290,7 +290,7 @@ struct Statement {
this.db = db;
if(sqlite3_prepare_v2(db.db, toStringz(sql), cast(int) sql.length, &s, null) != SQLITE_OK)
throw new DatabaseException(db.error());
throw new DatabaseException(db.error() ~ " " ~ sql);
}
version(sqlite_extended_metadata_available)