Documentation ¶
Index ¶
Constants ¶
View Source
const VERSION = "v0.9.0"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type QueryInfo ¶ added in v0.8.0
type QueryInfo interface { Context() context.Context SetContext(ctx context.Context) Table() string SetTable(table string) Op() Op // Query return sql string Query() string // Fields return select/update/insert fields Fields() []string AddField(field string) // Args return sql args Args() []interface{} AddArg(arg interface{}) // Value return sql execute result Value() interface{} // Err return sql execute error Err() error }
Click to show internal directories.
Click to hide internal directories.