type database/sql/driver.NamedValue

33 uses

	database/sql/driver (current package)
		driver.go#L64: type NamedValue struct {
		driver.go#L193: 	ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
		driver.go#L220: 	QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
		driver.go#L363: 	ExecContext(ctx context.Context, args []NamedValue) (Result, error)
		driver.go#L372: 	QueryContext(ctx context.Context, args []NamedValue) (Rows, error)
		driver.go#L400: 	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 []interface{}) ([]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#L1570: 		var nvdargs []driver.NamedValue
		sql.go#L1642: 		var nvdargs []driver.NamedValue

	contrib.go.opencensus.io/integrations/ocsql
		driver.go#L194: func (c ocConn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (res driver.Result, err error) {
		driver.go#L275: func (c ocConn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (rows driver.Rows, err error) {
		driver.go#L566: func (s ocStmt) ExecContext(ctx context.Context, args []driver.NamedValue) (res driver.Result, err error) {
		driver.go#L605: func (s ocStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (rows driver.Rows, err error) {
		driver.go#L843: func namedParamsAttr(args []driver.NamedValue) []trace.Attribute {

	github.com/jackc/pgx/v4/stdlib
		sql.go#L325: func (c *Conn) ExecContext(ctx context.Context, query string, argsV []driver.NamedValue) (driver.Result, error) {
		sql.go#L342: func (c *Conn) QueryContext(ctx context.Context, query string, argsV []driver.NamedValue) (driver.Rows, error) {
		sql.go#L383: func (c *Conn) CheckNamedValue(*driver.NamedValue) error {
		sql.go#L414: func (s *Stmt) ExecContext(ctx context.Context, argsV []driver.NamedValue) (driver.Result, error) {
		sql.go#L422: func (s *Stmt) QueryContext(ctx context.Context, argsV []driver.NamedValue) (driver.Rows, error) {
		sql.go#L721: func namedValueToInterface(argsV []driver.NamedValue) []interface{} {

	github.com/lib/pq
		conn_go18.go#L14: func (cn *conn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) {
		conn_go18.go#L32: func (cn *conn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {

	golang.org/x/pkgsite/internal/database
		driver.go#L73: func (c *wrapConn) ExecContext(ctx context.Context, q string, args []driver.NamedValue) (driver.Result, error) {
		driver.go#L77: func (c *wrapConn) QueryContext(ctx context.Context, q string, args []driver.NamedValue) (driver.Rows, error) {