updates exported interface types to match ncruces/go-sqlite3/driver methods

This commit is contained in:
kim 2024-10-14 21:11:28 +01:00
commit 1aa98be5e5

View file

@ -198,6 +198,7 @@ type stmtIface interface {
driver.Stmt
driver.StmtExecContext
driver.StmtQueryContext
driver.NamedValueChecker
}
// RowsIface is the driver.Rows interface
@ -207,4 +208,5 @@ type stmtIface interface {
type rowsIface interface {
driver.Rows
driver.RowsColumnTypeDatabaseTypeName
driver.RowsColumnTypeNullable
}