Skip to content

Instantly share code, notes, and snippets.

@giovannibenussi
Created December 20, 2024 11:06
Show Gist options
  • Save giovannibenussi/6cc4b2b1b0e9d7091d6808b2f30d6ada to your computer and use it in GitHub Desktop.
Save giovannibenussi/6cc4b2b1b0e9d7091d6808b2f30d6ada to your computer and use it in GitHub Desktop.
Prepare statements using the libsql library
import Database from "libsql";
const sqlite = new Database(":memory:");
sqlite.exec("CREATE TABLE users (name TEXT)");
sqlite.exec("INSERT INTO users VALUES ('Giovanni')");
const selectSingleStatement = sqlite.prepare(
`SELECT * FROM users WHERE name = ?`,
);
const existingRow = selectSingleStatement.get("Giovanni");
console.log("existingRow", existingRow);
const unexistingRow = selectSingleStatement.get("Iku");
console.log("unexistingRow", unexistingRow);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment