import { DB } from "https://deno.land/x/sqlite@v3.8/src/db.ts";
Run multiple semicolon-separated statements from a single string.
This method cannot bind any query parameters, and any result rows are discarded. It is only for running a chunk of raw SQL; for example, to initialize a database.
Example
db.execute(`
CREATE TABLE people (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT,
age REAL,
city TEXT
);
INSERT INTO people (name, age, city) VALUES ("Peter Parker", 21, "nyc");
`);