Query executes a query that may return rows, such as a SELECT. Deprecated: Drivers should implement StmtQueryContext instead (or additionally).
(args []driver.Value)
| 115 | // |
| 116 | // Deprecated: Drivers should implement StmtQueryContext instead (or additionally). |
| 117 | func (s *proxyStmt) Query(args []driver.Value) (driver.Rows, error) { |
| 118 | return nil, errors.New("Stmt.Query is deprecated and no longer supported") |
| 119 | } |
| 120 | |
| 121 | // QueryContext executes a query that may return rows, such as a |
| 122 | // SELECT. |
no outgoing calls