Kysely (the type-safe SQL query builder for TypeScript) 0.28 is out
1–6 of 6 posts
Re: Kysely (the type-safe SQL query builder for TypeScript) 0.28 is out
#2thoughts? requests? issues?
<3
Re: Kysely (the type-safe SQL query builder for TypeScript) 0.28 is out
#3thoughts? requests? issues? <3
Nice!
How do "savepoints" work? does it work with any db backend, eg Postgres?
Re: Kysely (the type-safe SQL query builder for TypeScript) 0.28 is out
#4thoughts? requests? issues? <3
more / better documentation please
Re: Kysely (the type-safe SQL query builder for TypeScript) 0.28 is out
#5thoughts? requests? issues? <3
Nice! How do "savepoints" work? does it work with any db backend, eg Postgres?
it depends on the database. the major ones support savepoints. postgres included. https://www.postgresql.org/docs/current/sql-savepoint.html
https://dev.mysql.com/doc/refman/8.4/en/savepoint.html
https://learn.microsoft.com/en-us/sql/t-sql/language-element...
https://sqlite.org/lang_savepoint.html
in kysely, the dialect you're using has to implement the new optional savepoint-specific methods for it to work.