mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-07-30 15:53:46 +00:00
9 lines
174 B
JavaScript
9 lines
174 B
JavaScript
import { Database } from 'limbo-wasm';
|
|
|
|
const db = new Database('hello.db');
|
|
|
|
const stmt = db.prepare('SELECT * FROM users');
|
|
|
|
const users = stmt.all();
|
|
|
|
console.log(users);
|