Lucian Mocanu

Results 149 comments of Lucian Mocanu

Looking at Bun's API, I think there's an easier way to check if something returns data or not: ```ts stmt.columnNames.length > 0 ``` This is similar to what `better-sqlite3` does...

I think this can be implemented in a simpler way with an additional driver. Bun's `sqlite` client is indeed inspired by `better-sqlite3`, so with a few modifications to that driver...

@naorpeled I wonder why the commit workflow is running also in the TypeORM repo (not just in your repo). Maybe it's a new feature in GitHub? In that case we...

I think the word "breaking change" in the PR description made us label this as a breaking change - in our docs we say that the minimum TS version is...

`[email protected]` is the only version matching our minimum requirements. We can't use it with node 16/18.

Yeah, I'd be very happy to get rid of support for those old node versions :) If we want to follow semver, this would mean releasing 0.4.0 when dropping support...

I wonder whether we should make the last parameter of `query` an object of type `QueryOptions` containing the property `useStructuredResult?: boolean`. Currently, in `QueryRunner.query` the last parameter is boolean just...

> Is Exclusion supported by all DBs? At least in TypeORM, only the PostgresDriver implements exclusion constraints. Not sure if there are other DBs supporting them, they seem to be...