export const getData = async () => {
console.log("neon", await sql_neonSELECT * FROM todo WHERE id = ${1});
console.log("drizzle", await db.select().from(todo));
};neon [ { id: 1, text: 'asdf', done: true } ]
Query: select "id", "text", "done" from "todo"
drizzle []