Exec executes a sql statement
(stmt string, args ...any)
| 63 | |
| 64 | // Exec executes a sql statement |
| 65 | func (mdb *db) Exec(stmt string, args ...any) error { |
| 66 | _, err := mdb.db.Exec(stmt, args...) |
| 67 | return err |
| 68 | } |
| 69 | |
| 70 | // ListTables returns a list of tables in this database |
| 71 | func (mdb *db) ListTables(database string) ([]string, error) { |
no test coverage detected