MCPcopy Create free account
hub / github.com/mattn/go-sqlite3 / QueryContext

Method QueryContext

sqlite3_sql.go:46–48  ·  view source on GitHub ↗

QueryContext implement QueryerContext.

(ctx context.Context, args []driver.NamedValue)

Source from the content-addressed store, hash-verified

44
45// QueryContext implement QueryerContext.
46func (s *SQLiteStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) {
47 return s.query(ctx, args)
48}
49
50// ExecContext implement ExecerContext.
51func (s *SQLiteStmt) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) {

Callers

nothing calls this directly

Calls 1

queryMethod · 0.95

Tested by

no test coverage detected