(c *conn, query string)
| 29 | } |
| 30 | |
| 31 | func newStmt(c *conn, query string) (s *stmt) { |
| 32 | s = &stmt{c: c, pattern: query} |
| 33 | return |
| 34 | } |
| 35 | |
| 36 | // Query executes a query that may return rows, such as SELECT. |
| 37 | func (s *stmt) Query(args []driver.Value) (driver.Rows, error) { |
no outgoing calls