© 2026 Hedgehog Software, LLC
const users = sqliteTable("user", { id: text("id").primaryKey(), text: text("text"), })
const updateUser = db .update(users) .set({ text: sql.placeholder("text") }) .where(eq(users.id, sql.placeholder("id"))) .prepare()
Type 'Placeholder<"text", any>' is not assignable to type 'string | SQL<unknown> | null | undefined'.
set