const update = db .update(userTable) .set({ name: sql.placeholder('name') }) .where(eq(userTable.id, sql.placeholder('id'))) .prepare('updateUser');
© 2026 Hedgehog Software, LLC