Searched defs:ctxOnlyConn (Results 1 – 1 of 1) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/database/sql/ |
D | sql_test.go | 4254 type ctxOnlyConn struct { struct 4255 fc *fakeConn 4257 queryCtxCalled bool 4258 execCtxCalled bool 4261 func (c *ctxOnlyConn) Begin() (driver.Tx, error) { 4265 func (c *ctxOnlyConn) Close() error { 4271 func (c *ctxOnlyConn) Prepare(q string) (driver.Stmt, error) { 4275 func (c *ctxOnlyConn) PrepareContext(ctx context.Context, q string) (driver.Stmt, error) { 4279 …yConn) QueryContext(ctx context.Context, q string, args []driver.NamedValue) (driver.Rows, error) { 4284 …Conn) ExecContext(ctx context.Context, q string, args []driver.NamedValue) (driver.Result, error) {
|