Searched defs:NamedValue (Results 1 – 4 of 4) sorted by relevance
| /prebuilts/go/linux-x86/src/database/sql/ |
| D | ctxutil.go | 29 …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) {
|
| D | convert.go | 24 func describeNamedValue(nv *driver.NamedValue) string { 98 func defaultCheckNamedValue(nv *driver.NamedValue) (err error) {
|
| D | fakedb_test.go | 448 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/ |
| D | driver.go | 65 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
|