Last active
November 11, 2024 17:02
-
-
Save Ciantic/1a94479f8974328b48ed70948abaa2df to your computer and use it in GitHub Desktop.
Example how to use official SQLite3 WASM with ESM modules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
</head> | |
<body> | |
LOOK AT THE CONSOLE | |
<script type="module"> | |
import sqlite3InitModule from "https://cdn.jsdelivr.net/npm/@sqlite.org/[email protected]/sqlite-wasm/jswasm/sqlite3-bundler-friendly.mjs"; | |
const sqlite3 = await sqlite3InitModule({ | |
// These three rows aren't necessary, I just wanted to try can I give URL to the wasm file, and I can | |
locateFile: (file) => { | |
return "https://cdn.jsdelivr.net/npm/@sqlite.org/[email protected]/sqlite-wasm/jswasm/sqlite3.wasm"; | |
}, | |
}); | |
// SQLite's C API | |
const capi = sqlite3.capi; | |
console.log("sqlite3 version", capi.sqlite3_libversion(), capi.sqlite3_sourceid()); | |
// OO API example below oo1 docs https://sqlite.org/wasm/doc/tip/api-oo1.md | |
const oo = sqlite3.oo1; | |
const db = new oo.DB(); | |
const createPersonTableSql = ` | |
CREATE TABLE IF NOT EXISTS person ( | |
id INTEGER PRIMARY KEY AUTOINCREMENT, | |
name TEXT NOT NULL, | |
age INTEGER NOT NULL | |
); | |
`; | |
const insertPerson1Sql = ` | |
INSERT INTO person (name, age) VALUES ('Alice', 42); | |
`; | |
const insertPerson2Sql = ` | |
INSERT INTO person (name, age) VALUES ('Bob', 42); | |
`; | |
db.exec([createPersonTableSql, insertPerson1Sql, insertPerson2Sql]); | |
const res = db.selectArrays("select * from person"); | |
console.log(db, res); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment