Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ORM: adatbázisban case-insensitive legyenek a tábla és mezőnevek #88

Open
jmarton opened this issue Jan 10, 2018 · 0 comments
Open

Comments

@jmarton
Copy link
Member

jmarton commented Jan 10, 2018

A Sequelize alapbeállításban case sensitive-re generálja a tábla és oszlopneveket, ami az SQL szintű lekérdezés-írást kényelmetlenné teszi.

Ennek értelmében jelenleg az alábbi két SQL közül az első sikerül, a második SQL Error: ERROR: relation "courses" does not exist hibával meghiúsul.

Jó lenne, ha mindez menne idézőjelezés nélkül: a PostgreSQL-ban az idézőjel nélküli tábal és oszlopnevek kisbetűsre konvertálódnak.

select * from "Courses";
select * from courses;

A dokumentáció szerint a options.quoteIdentifiers=false beállítás ezt megoldja, de ellenjavallt:

Set to false to make table names and attributes case-insensitive on Postgres and skip double quoting of them. WARNING: Setting this to false may expose vulnerabilities and is not recommended!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant