From 31ded05760749774283d342360516d68d2e41586 Mon Sep 17 00:00:00 2001 From: Jason Shin Date: Sat, 12 Aug 2023 16:02:09 +1000 Subject: [PATCH 1/3] Update readme.md --- readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.md b/readme.md index 30f9e534..4b345335 100644 --- a/readme.md +++ b/readme.md @@ -617,6 +617,8 @@ - [TypeORM](https://github.com/typeorm/typeorm) - ORM for PostgreSQL, MariaDB, MySQL, SQLite, and more. - [MikroORM](https://github.com/mikro-orm/mikro-orm) - TypeScript ORM based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, PostgreSQL, MySQL and SQLite. - [Prisma](https://github.com/prisma/prisma) - Modern database access (ORM alternative). Auto-generated and type-safe query builder in TypeScript. Supports PostgreSQL, MySQL & SQLite. +- Compile-time Checked Queries + - [sqlx-ts](https://github.com/JasonShin/sqlx-ts) - sqlx-ts is a CLI application featuring compile-time checked queries without a DSL and generates types against SQLs to keep your code type-safe - Query builder - [Knex](https://github.com/knex/knex) - Query builder for PostgreSQL, MySQL and SQLite3, designed to be flexible, portable, and fun to use. - Other From 7383b89adf6af028e84bcefb94752f2fdbbd3a4d Mon Sep 17 00:00:00 2001 From: Jason Shin Date: Sun, 1 Oct 2023 14:31:47 +1100 Subject: [PATCH 2/3] Update readme.md Co-authored-by: Sindre Sorhus --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 4b345335..4a3aa010 100644 --- a/readme.md +++ b/readme.md @@ -618,7 +618,7 @@ - [MikroORM](https://github.com/mikro-orm/mikro-orm) - TypeScript ORM based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, PostgreSQL, MySQL and SQLite. - [Prisma](https://github.com/prisma/prisma) - Modern database access (ORM alternative). Auto-generated and type-safe query builder in TypeScript. Supports PostgreSQL, MySQL & SQLite. - Compile-time Checked Queries - - [sqlx-ts](https://github.com/JasonShin/sqlx-ts) - sqlx-ts is a CLI application featuring compile-time checked queries without a DSL and generates types against SQLs to keep your code type-safe + - [sqlx-ts](https://github.com/JasonShin/sqlx-ts) - CLI tool featuring compile-time checked queries without a DSL and generates types against SQLs to keep your code type-safe. - Query builder - [Knex](https://github.com/knex/knex) - Query builder for PostgreSQL, MySQL and SQLite3, designed to be flexible, portable, and fun to use. - Other From 896cc64a5496bf39531053b9c632863b9f9290a0 Mon Sep 17 00:00:00 2001 From: Jason Shin Date: Sun, 1 Oct 2023 12:34:31 +0900 Subject: [PATCH 3/3] fix title case --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 4a3aa010..54493997 100644 --- a/readme.md +++ b/readme.md @@ -617,7 +617,7 @@ - [TypeORM](https://github.com/typeorm/typeorm) - ORM for PostgreSQL, MariaDB, MySQL, SQLite, and more. - [MikroORM](https://github.com/mikro-orm/mikro-orm) - TypeScript ORM based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, PostgreSQL, MySQL and SQLite. - [Prisma](https://github.com/prisma/prisma) - Modern database access (ORM alternative). Auto-generated and type-safe query builder in TypeScript. Supports PostgreSQL, MySQL & SQLite. -- Compile-time Checked Queries +- Compile-time checked queries - [sqlx-ts](https://github.com/JasonShin/sqlx-ts) - CLI tool featuring compile-time checked queries without a DSL and generates types against SQLs to keep your code type-safe. - Query builder - [Knex](https://github.com/knex/knex) - Query builder for PostgreSQL, MySQL and SQLite3, designed to be flexible, portable, and fun to use.