Created
December 20, 2024 11:06
-
-
Save giovannibenussi/6cc4b2b1b0e9d7091d6808b2f30d6ada to your computer and use it in GitHub Desktop.
Prepare statements using the libsql library
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
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