Open tellmewhy-sir opened 4 years ago
Issue type:
[ ] question [x] bug report [ ] feature request [ ] documentation issue
Database system/driver:
[ ] cordova [ ] mongodb [ ] mssql [ ] mysql / mariadb [ ] oracle [x] postgres [ ] cockroachdb [ ] sqlite [ ] sqljs [ ] react-native [ ] expo
cordova
mongodb
mssql
mysql
mariadb
oracle
postgres
cockroachdb
sqlite
sqljs
react-native
expo
TypeORM version:
[x] latest [ ] @next [ ] 0.x.x (or put your version here)
latest
@next
0.x.x
Steps to reproduce or a small repository showing the problem:
I've set up my project for a Postgres database but it seems like TypeORM is trying to use the SQL Lite Driver which keeps throwing an error.
ormconfig.json
{ "type": "postgres", "host": "localhost", "port": 5432, "username": "[USERNAME]", "password": "[PASSWORD]", "database": "[DATABASE]", "synchronize": true, "logging": false, "entities": [ "entity/**/*.ts" ], "migrations": [ "migration/**/*.ts" ], "subscribers": [ "subscriber/**/*.ts" ], "cli": { "entitiesDir": "entity", "migrationsDir": "migration", "subscribersDir": "subscriber" } }
The error:
I get this just from following the Quick Start instructions
@tellmewhy-sir Thanks for the report! denolib/typeorm@v0.2.23-rc4 does not support the latest version of Deno. Can you update it to v0.2.23-rc5?
denolib/typeorm@v0.2.23-rc4
Issue type:
[ ] question [x] bug report [ ] feature request [ ] documentation issue
Database system/driver:
[ ]
cordova
[ ]mongodb
[ ]mssql
[ ]mysql
/mariadb
[ ]oracle
[x]postgres
[ ]cockroachdb
[ ]sqlite
[ ]sqljs
[ ]react-native
[ ]expo
TypeORM version:
[x]
latest
[ ]@next
[ ]0.x.x
(or put your version here)Steps to reproduce or a small repository showing the problem:
I've set up my project for a Postgres database but it seems like TypeORM is trying to use the SQL Lite Driver which keeps throwing an error.
ormconfig.json
The error:
I get this just from following the Quick Start instructions