Wrapper functions that perform write operations to database asynchronously
await asyncDatabaseWrite(db, "INSERT INTO people (name, age, birthday) VALUES ('Ben', 21, '1970-1-1');", () => {}); Copy
await asyncDatabaseWrite(db, "INSERT INTO people (name, age, birthday) VALUES ('Ben', 21, '1970-1-1');", () => {});
sqlite3 database object
SQL query to execute
callback to perform after the operation
Promise for database operation
Wrapper functions that perform write operations to database asynchronously
Example