type database/sql/driver.NamedValue

18 uses

	database/sql/driver (current package)
		driver.go#L64: type NamedValue struct {
		driver.go#L199: 	ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
		driver.go#L226: 	QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
		driver.go#L369: 	ExecContext(ctx context.Context, args []NamedValue) (Result, error)
		driver.go#L378: 	QueryContext(ctx context.Context, args []NamedValue) (Rows, error)
		driver.go#L406: 	CheckNamedValue(*NamedValue) error

	database/sql
		convert.go#L22: func describeNamedValue(nv *driver.NamedValue) string {
		convert.go#L48: func (c ccChecker) CheckNamedValue(nv *driver.NamedValue) error {
		convert.go#L96: func defaultCheckNamedValue(nv *driver.NamedValue) (err error) {
		convert.go#L107: func driverArgsConnLocked(ci driver.Conn, ds *driverStmt, args []any) ([]driver.NamedValue, error) {
		convert.go#L108: 	nvargs := make([]driver.NamedValue, len(args))
		ctxutil.go#L29: func ctxDriverExec(ctx context.Context, execerCtx driver.ExecerContext, execer driver.Execer, query string, nvdargs []driver.NamedValue) (driver.Result, error) {
		ctxutil.go#L46: func ctxDriverQuery(ctx context.Context, queryerCtx driver.QueryerContext, queryer driver.Queryer, query string, nvdargs []driver.NamedValue) (driver.Rows, error) {
		ctxutil.go#L63: func ctxDriverStmtExec(ctx context.Context, si driver.Stmt, nvdargs []driver.NamedValue) (driver.Result, error) {
		ctxutil.go#L80: func ctxDriverStmtQuery(ctx context.Context, si driver.Stmt, nvdargs []driver.NamedValue) (driver.Rows, error) {
		ctxutil.go#L137: func namedValueToValue(named []driver.NamedValue) ([]driver.Value, error) {
		sql.go#L1674: 		var nvdargs []driver.NamedValue
		sql.go#L1751: 		var nvdargs []driver.NamedValue