-
This is on Node. This is my code
```
... (tables above)
interface TouchPanelAppDB {
experiment: ExperimentTable,
experiment_profile: ExperimentProfileTable,
data_snapshots: DataS…
-
Hi,
We are using Kysely for a while now, thanks for the great work done here !
We encounter an issue with the use of the `with` keyword in `Postgres` dialect.
This works perfectly fine, when…
-
Kysely returns nullable columns as `foo | null`. In my application code I prefer to use `undefined` instead of `null`. Hence I have to convert all `foo | null` fields into `foo | undefined` after retr…
-
e.g
```
console.log(
await db
.selectFrom("comments")
.select("embedding")
.execute()
.then((r) => r[0].embedding),
);
```
Prints: `{ doubleValues: [ 4, 5,…
-
```
model User {
id BigInt @id @default(autoincrement())
publicId String @unique @map("public_id") @db.VarChar(30)
email String @unique
pas…
-
https://www.postgresql.org/docs/current/datatype-binary.html
```js
.addColumn("foobar", 'bytea')
```
Got type error `Argument of type '"bytea"' is not assignable to parameter of type 'DataTypeEx…
-
## Steps to reproduce
Following [this tutorial](https://gal.hagever.com/posts/running-vercel-postgres-locally), I created this file:
*docker-compose.yml*
```yml
version: "3"
services:
…
-
In case of ORMs such as typeorm and mikroorm, there are read replica connection support. ([example](https://mikro-orm.io/docs/read-connections))
How about supporting automatic connection for proper…
-
Setting up a new project with Kysely and the PlanetScaleDialect. I get the following error after a simple query or even with I `console.log(db)`
The error:
```bash
///
2 | import { SelectQuery…
-
I just upgraded from 0.6.0, and am currently unable to use the programmatic API, like so:
```
new Generator().generate({
camelCase: false,
connectionString: produceConnectionString(),
…