sqlite: implement support for multiple statements

This commit is contained in:
Ryan Leckey
2020-03-14 17:04:02 -07:00
parent 0130fe1479
commit 63ef32189d
10 changed files with 256 additions and 91 deletions

View File

@@ -10,8 +10,7 @@ impl Database for Sqlite {
type TypeInfo = super::SqliteTypeInfo;
// TODO?
type TableId = u32;
type TableId = String;
type RawBuffer = Vec<super::SqliteArgumentValue>;
}