Generator clean up.
Ensure all sql types can be processed.
This commit is contained in:
parent
b3a52ceb31
commit
64ba909381
21 changed files with 495 additions and 208 deletions
8
sqlbuilder/execution/db.go
Normal file
8
sqlbuilder/execution/db.go
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
package execution
|
||||
|
||||
import "database/sql"
|
||||
|
||||
type Db interface {
|
||||
Exec(query string, args ...interface{}) (sql.Result, error)
|
||||
Query(query string, args ...interface{}) (*sql.Rows, error)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue