sqlx-ts
sqlx-ts copied to clipboard
node.js compile-time SQL validations & type generations
Hi! I decided to test out this library, but I cannot run it on my OS because the executable is dynamically linked[1]. The readme claims > Linux and Windows binaries...
This applies to both MySQL and to Postgres. Examples below will be for MySQL though. Given I have a table like this: ```sql CREATE TABLE `examples` ( `id` bigint(20) NOT...
I noticed that `bigint` is treated as `number` in the output types, which is usually incorrect as `bigint` can contain a `i64`, while JS numbers can only contain integers below...
Using Rank() OVER (PARTITION...) results in this error: ``` thread 'main' panicked at src/ts_generator/sql_parser/expressions/translate_expr.rs:163:61: called `Option::unwrap()` on a `None` value ``` Full query: ```sql WITH cte AS ( SELECT s.title,...
I am having issues generating types from my project. I have successfully done it once, because I see a `my-file.queries.ts` file, however, I have tried deleting it again and rerunning:...
I am running sqlx-ts for the first time; the type file does not exist yet, and the types are being generated. The file already exists, and the types need to...
Bumps the npm-all-dependencies group in /node with 7 updates: | Package | From | To | | --- | --- | --- | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `5.62.0` | `8.1.0` |...
Bumps the cargo-all-dependencies group with 10 updates in the / directory: | Package | From | To | | --- | --- | --- | | [swc_common](https://github.com/swc-project/swc) | `0.36.3` |...
The PR addresses installation problems on windows - Github action that covers various environments (including windows)