| 268 | } |
| 269 | |
| 270 | int DB::execUnsafe(SQLite::Database* db, String sql) { |
| 271 | SQLite::Statement statement(*db, sql.toString()); |
| 272 | return statement.exec(); |
| 273 | } |
| 274 | |
| 275 | int DB::execUnsafe(SQLite::Database* db, String sql, const std::vector<Own<Value>>& args) { |
| 276 | SQLite::Statement statement(*db, sql.toString()); |
nothing calls this directly
no test coverage detected