I am writing a GUI database application using Python, the PySide6 Qt bindings, and a PostgreSQL server. It will display database entries and allow the user to add and edit entries.

I am quite familiar and comfortable with Psycopg, having used it a lot before. However, I noticed that Qt has a built-in SQL library that returns Qt objects. I am more comfortable with Psycopg, so I have, so far, been using it instead of Qt's library.

Is this a bad practice that will end up making life difficult further in development?

0

There are 0 best solutions below