sqlx-ts 0.11.0 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +4 -0
  2. package/package.json +1 -1
  3. package/sqlx-ts +0 -0
package/README.md CHANGED
@@ -137,6 +137,10 @@ $ curl -LSfs https://jasonshin.github.io/sqlx-ts/install.sh | \
137
137
  sh -s -- --help
138
138
  ```
139
139
 
140
+ ### Roadmap
141
+
142
+ [Please check the public notion board for the current and future work items](https://foil-adasaurus-bba.notion.site/f1ca150c5b0141d69eaf136c596ae649?v=efc6af2aa3174f87a39bec8edc09c4a9)
143
+
140
144
  ### sqlx-ts is not an ORM!
141
145
 
142
146
  sqlx-ts supports **compile-time checked queries** and **generated types against SQLs**. It does not, however, do this by providing DSL (domain-specific language) for building queries. Instead, it provides a macro (almost) that take regular SQL as input and ensures that it is valid against the target database. The way it works is that sqlx-ts connects to your local or development database at compile-time and have database itself to verify the queries, also generate types based on information_schema. This can have many benefits that typical ORMs cannot provide
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sqlx-ts",
3
- "version": "0.11.0",
3
+ "version": "0.12.0",
4
4
  "description": "sqlx-ts ensures your raw SQLs are compile-time checked",
5
5
  "main": "dist/index.js",
6
6
  "maintainers": [
package/sqlx-ts CHANGED
Binary file