Earlier quoted context omitted.
From Drizzle's SQL-like example [1] by following classical SQL and including .select() first it wont to be able to provide type-safe queries. E.g. In litdb every from/join returns a new typed query builder where every reference is typed to a joined table that's included in the query. Drizzle also uses its own custom query language e.g. .where(eq(countries.id, 10)) Whereas litdb lets you use the full expressiveness of…
Does using template strings not compromise with type-safety? The drizzle example will be a compile time error for example if id wasn't a numeric column. Seems a strange design choice for a library that claims to offer a type-safe sql builder.
SELECT * from Contact where id = '1'
With that said you can achieve something similar in litdb with a custom expression: const eq = (ref:(x:T)=>V, value:V) => (x:T) => $`${ref(x)} = ${value}`
Which will type check that the value matches the column type: .where(eq(c => c.id, 2))
and fail type check when they don't: .where(eq(c => c.id, '2'))
Examples of other custom expressions: https://litdb.dev/#composable