Home
last modified time | relevance | path

Searched defs:NamedValue (Results 1 – 4 of 4) sorted by relevance

/prebuilts/go/linux-x86/src/database/sql/
Dctxutil.go29 …rCtx driver.ExecerContext, execer driver.Execer, query string, nvdargs []driver.NamedValue) (drive…
46 …x driver.QueryerContext, queryer driver.Queryer, query string, nvdargs []driver.NamedValue) (drive…
63 func ctxDriverStmtExec(ctx context.Context, si driver.Stmt, nvdargs []driver.NamedValue) (driver.Re…
80 func ctxDriverStmtQuery(ctx context.Context, si driver.Stmt, nvdargs []driver.NamedValue) (driver.R…
137 func namedValueToValue(named []driver.NamedValue) ([]driver.Value, error) {
Dconvert.go24 func describeNamedValue(nv *driver.NamedValue) string {
98 func defaultCheckNamedValue(nv *driver.NamedValue) (err error) {
Dfakedb_test.go448 func checkSubsetTypes(allowAny bool, args []driver.NamedValue) error {
810 func valueFromPlaceholderName(args []driver.NamedValue, name string) driver.Value {
/prebuilts/go/linux-x86/src/database/sql/driver/
Ddriver.go65 type NamedValue struct { struct
70 Name string
73 Ordinal int
76 Value Value
200 ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
227 QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
370 ExecContext(ctx context.Context, args []NamedValue) (Result, error)
379 QueryContext(ctx context.Context, args []NamedValue) (Rows, error)
407 CheckNamedValue(*NamedValue) error