import { connect } from '@tursodatabase/database';// Open a file-backed database (created if it does not exist)const db = await connect('turso.db');// Execute DDL directlydb.exec('CREATE TABLE IF NOT EXISTS users (id INTEGER PRIMARY KEY, name TEXT)');// Prepare and run a statementconst stmt = db.prepare('INSERT INTO users (name) VALUES (?)');await stmt.run('Alice');// Query rowsconst rows = await db.prepare('SELECT * FROM users').all();console.log(rows); // [{ id: 1, name: 'Alice' }]db.close();