mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-11 21:49:13 +00:00
Virtual table API.
This commit is contained in:
2
vtab.go
2
vtab.go
@@ -103,7 +103,7 @@ func (c *Conn) VtabConfig(op VtabConfigOption, args ...any) error {
|
||||
}
|
||||
|
||||
// VTabConstructor is a virtual table constructor function.
|
||||
type VTabConstructor[T VTab] func(db *Conn, arg ...string) (T, error)
|
||||
type VTabConstructor[T VTab] func(db *Conn, module, schema, table string, arg ...string) (T, error)
|
||||
|
||||
type module[T VTab] [2]VTabConstructor[T]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user