Home | History | Annotate | Download | only in sql

Lines Matching refs:Named

74 // A NamedArg is a named argument. NamedArg values may be used as
75 // arguments to Query or Exec and bind to the corresponding named
79 // the Named function.
97 // Named provides a more concise way to create NamedArg values.
106 // sql.Named("start", startTime),
107 // sql.Named("end", endTime),
109 func Named(name string, value interface{}) NamedArg {
288 // _, err := db.ExecContext(ctx, "ProcName", sql.Named("Arg1", sql.Out{Dest: &outArg}))