orm
Here are 3,992 public repositories matching this topic...
ORM for TypeScript and JavaScript (ES7, ES6, ES5). Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, SAP Hana, WebSQL databases. Works in NodeJS, Browser, Ionic, Cordova and Electron platforms.
-
Updated
Jun 24, 2022 - TypeScript
The fantastic ORM library for Golang, aims to be developer friendly
-
Updated
Jun 24, 2022 - Go
Bug description
On windows, I run prisma format and note the unusual file ending. The lines are all LF, but the very last line is CRLF.
This causes issue on my Linux CI where it formats it ending in LF's only, causing a diff to occur and the build to fail.
How to reproduce
- On windows do prisma format
- Open in HxD or similar
- See attached:
, but we could also translate x.Parse on the various primitive types (int, long...), as they're a common .NET API. We'd only support the simple overloads accepting a string, nothing more.
Originally raised in dotnet/efcore#28282 (comment)
Original issue:
Relevant PRs:
diesel-rs/diesel#3035
diesel-rs/diesel#3036
diesel-rs/diesel#3037
diesel-rs/diesel#3092
CakePHP: The Rapid Development Framework for PHP - Official Repository
-
Updated
Jun 24, 2022 - PHP
GoFrame is a modular, powerful, high-performance and enterprise-class application development framework of Golang.
-
Updated
Jun 24, 2022 - Go
SQL for Humans™
-
Updated
Apr 12, 2022 - Python
Simple and Powerful ORM for Go, support mysql,postgres,tidb,sqlite3,mssql,oracle, Moved to https://gitea.com/xorm/xorm
-
Updated
Apr 3, 2020 - Go
A simple Node.js ORM for PostgreSQL, MySQL and SQLite3 built on top of Knex.js
-
Updated
Mar 13, 2022 - JavaScript
the champagne of beta embedded databases
-
Updated
May 27, 2022 - Rust
Version
1.13.0
What happened?
Hi. New user, evaluating sqlc for use.
What Happens:
We have some migrations/*.sql. When running sqlc generate, all the .sql in this folder are being executed.
So i get errors like
migrations/V20220422073404__create_intitial_tables.sql:1:1: relation "integrations" already exists
and
migrations/V20220524081832__created_a
Hello,
I use postgres 12 with “MATERIALIZED” statement,
and I once asked on Discord how to use the “MATERIALIZED” statement in go-pg,
and get that is not support now.
Expected Behavior
WITH AS MATERIALIZED (...)
jOOQ is the best way to write SQL in Java
-
Updated
Jun 24, 2022 - Java
TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, MariaDB, PostgreSQL and SQLite databases.
-
Updated
Jun 24, 2022 - TypeScript
A Python Object-Document-Mapper for working with MongoDB
-
Updated
Jun 23, 2022 - Python
-
Updated
Jun 23, 2022 - C#
Command line tool to generate idiomatic Go code for SQL databases supporting PostgreSQL, MySQL, SQLite, Oracle, and Microsoft SQL Server
-
Updated
Apr 29, 2022 - Go
Improve this page
Add a description, image, and links to the orm topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the orm topic, visit your repo's landing page and select "manage topics."


https://github.com/sequelize/sequelize/blob/8a1429d6044123bba3a3f312b2e0c74b0c829990/lib/model.js#L1271
If I create any model with
charset: 'utf8mb4', collate: 'utf8mb4_general_ci'sequelize translates it to this for mysql
CREATE TABLE IF NOT EXISTStablename... ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8mb4_general_ci;On stepping through the code, it seems that the issu