Exec executes a SQL query that does not return any rows, like sql.Exec. Queries can be either strings or upper-db statements. Example: sqlbuilder.Exec(`INSERT INTO books (title) VALUES("La Ciudad y los Perros")`)
(query interface{}, args ...interface{})
| 87 | // |
| 88 | // sqlbuilder.Exec(`INSERT INTO books (title) VALUES("La Ciudad y los Perros")`) |
| 89 | Exec(query interface{}, args ...interface{}) (sql.Result, error) |
| 90 | |
| 91 | // ExecContext executes a SQL query that does not return any rows, like sql.ExecContext. |
| 92 | // Queries can be either strings or upper-db statements. |
no outgoing calls