gnorm
gnorm copied to clipboard
A database-first code generator for any language
When you have two schemas with the same table name in them, you get the following error: ``` Error: error querying table comments: pq: more than one row returned by...
The current query: ``` SELECT n.nspname, t.typname as type FROM pg_type t LEFT JOIN pg_catalog.pg_namespace n ON n.oid = t.typnamespace JOIN pg_enum e ON t.oid = e.enumtypid WHERE (t.typrelid =...
Please find the mssql support
Hey, due to the pq version gnorm would fail with `Error: pq: unknown authentication response: 10` on newer versions of postgres, I noticed the project has not been updated for...
Upgrade pq to support postgres 10
this is basic sqlite support
MariaDB was designed to be a drop-in replacement for MySQL, so the codebase should be able to support it. The only discrepancy I've encountered is that ```INFORMATION_SCHEMA.COLUMNS.GENERATION_EXPRESSION``` is ```NULL``` by...
[getting started](https://gnorm.org/getting-started/) says: > run `gnorm init` to get a default `gnorm.toml` file and template files in the current directory. You need to at least set the `ConnStr`, `DBType`, and...
The readme says: ``` For best results, use the magefile in the root of the repo, which will do all the build-time magic. To run it, install mage, then just...