updates exported interface types to match ncruces/go-sqlite3/driver methods (#3440)

This commit is contained in:
kim 2024-10-14 20:28:59 +00:00 committed by GitHub
parent 4fcea3d6ae
commit 3ad49f7718
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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