Searched defs:driverStmt (Results 1 – 2 of 2) sorted by relevance
/prebuilts/go/linux-x86/src/database/sql/ |
D | convert.go | 109 func driverArgsConnLocked(ci driver.Conn, ds *driverStmt, args []any) ([]driver.NamedValue, error) {
|
D | sql.go | 703 type driverStmt struct { struct 704 sync.Locker // the *driverConn 705 si driver.Stmt 706 closed bool 707 closeErr error // return value of previous Close call 712 func (ds *driverStmt) Close() error { 2663 func resultFromStatement(ctx context.Context, ci driver.Conn, ds *driverStmt, args ...any) (Result,… 2833 func rowsiFromStatement(ctx context.Context, ci driver.Conn, ds *driverStmt, args ...any) (driver.R…
|