-
If using Tedious v17 like me for MS SQL*, you must provide the cancel method for the TediousConnection because the type changed from () => void to () => boolean.
*Tedious v18 introduced a driver …
-
I'm currently running migrations on local machine against one postgres container with two schemas, one for dev and one for integration tests. The migrations run fine against the dev schema, but does n…
tday updated
4 months ago
-
I found out the hard way that transactions are not yet supported in Kysely/Vercel
Is this on the roadmap?
Maybe add something in the readme that transactions are not yet supported?
```ts
beg…
-
Hi, I'm using kysel ^0.261 and kysely-neon^1.3.0 and I have a query like that await db.deleteFrom("forms").where("id", "=", form_id).execute() //form_id is a number; but it returning an error when I…
-
Greetings,
Does kysely support the usage of select exist queries like
``` sql
SELECT EXISTS (
SELECT 1
FROM table_name
WHERE col_name = $1
);
```
Actually I use a workaround like …
-
Error: "Type 'string' is not assignable to type 'undefined'.ts(2322)" seen when doing:
```
export default defineConfig({
dialect: dialect,
plugins: plugins,
migrations: {
migrationF…
-
I'm required to install the 'ws' dependency into my project in order to perform migration on an external 'neondb' connection
error message:
```bash
> kysely migrate:down
◐ Starting migration d…
-
### Describe the bug
Getting an error with "Raw files not found" while trying to record a demo.
### Demo links
_No response_
### Steps to reproduce
![image](https://github.com/user-atta…
-
### Describe what you want
It would be great if multiple calls to the `where` method could be merged with an `and` when the query was in dynamic mode.
This would be fantastic for scenarios where y…
-
I'm trying to transform the following SQLite statement into the corresponding MySQL expression:
**SQLite**:
``` ts
const insertedId = await this.db
.insertInto('Vehicle')
.values(vehicle)
…