(query string, args ...interface{})
| 26 | // SQLCommon is the minimal interface required by a db connection |
| 27 | type SQLCommon interface { |
| 28 | Exec(query string, args ...interface{}) (sql.Result, error) |
| 29 | Prepare(query string) (*sql.Stmt, error) |
| 30 | Query(query string, args ...interface{}) (*sql.Rows, error) |
| 31 | QueryRow(query string, args ...interface{}) *sql.Row |
no outgoing calls