mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 03:54:21 +01:00
10 lines
174 B
JavaScript
10 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);
|