kysely icon indicating copy to clipboard operation
kysely copied to clipboard

A type-safe typescript SQL query builder

Results 204 kysely issues
Sort by recently updated
recently updated
newest added
trafficstars

[That PR](https://github.com/koskimas/kysely/pull/117) got me wondering if these predicates could be added without the complexity described in the comment section by @koskimas.. but still with type-safety, autocompletion and decent ergonomics. `fn`...

First of all I would like to say you have done a great job with Kysely 👍 Currently we are looking for an ORM or query builder for our new...

enhancement

SQLite does support ddl transactions, but supportsTransactionalDdl in the sqlite adapter returns false. I am doing it with my own adapter and it seems to work fine. Can this be...

enhancement

Right now I'm doing a couple of bulk queries (user input) using the sqlite client directly. I'd like to incorporate this into kysely so i can hide my connection object...

enhancement

I am really impress by Kysely and your work. Any plan for SQL Server dialect?

enhancement

Originally requested [here](https://github.com/koskimas/kysely/issues/155). What do you think? Please click thumbs up or down on this message. thumbs up: Replace and remove Discord thumbs down: Keep Discord (I know github discussions...

- [x] generalize `UnionNode`, its parser, transforms and visits - all set operators share the same syntax of `query1 SET_OPERATOR [all | distinct] query2`. Also set operations can be combined,...

enhancement

Hi, I am using kysely with postgres like this ``` const db = new Kysely({ dialect: new PostgresDialect({ pool: new pg.Pool(), }), log: ["error", "query"], plugins: [new CamelCasePlugin()], }); ```...

enhancement