Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Factories = make(map[string]executorFactory)
Factories is the map of executor factories.
Functions ¶
This section is empty.
Types ¶
type Executor ¶
type Executor interface { // ExecuteScript execute the script. ExecuteScript(script string) error // Schema returns the schema of the database. Schema() (string, error) // Dispose closes the database connection. Dispose() error }
Executor is the interface that wraps the ExecuteScript and Schema methods.
Click to show internal directories.
Click to hide internal directories.