Home | History | Annotate | Download | only in driver

Lines Matching refs:Query

90 // first prepare a query, execute the statement, and then close the
97 Exec(query string, args []Value) (Result, error)
103 // first prepare a query, execute the statement, and then close the
110 ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
115 // If a Conn does not implement Queryer, the sql package's DB.Query will
116 // first prepare a query, execute the statement, and then close the
119 // Query may return ErrSkip.
123 Query(query string, args []Value) (Rows, error)
128 // If a Conn does not implement QueryerContext, the sql package's DB.Query will
129 // first prepare a query, execute the statement, and then close the
136 QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
145 Prepare(query string) (Stmt, error)
168 PrepareContext(ctx context.Context, query string) (Stmt, error)
202 // Result is the result of a query execution.
210 // query.
227 // before the statement's Exec or Query methods are called.
231 // will not sanity check Exec or Query argument counts.
234 // Exec executes a query that doesn't return rows, such
240 // Query executes a query that may return rows, such as a
244 Query(args []Value) (Rows, error)
249 // ExecContext executes a query that doesn't return rows, such
256 // StmtQueryContext enhances the Stmt interface by providing Query with context.
258 // QueryContext executes a query that may return rows, such as a
276 // Rows is an iterator over an executed query's results.