TOra says no connection provider

I installed tOra (pl / SQL editor) on ubuntu 12.04, after opening the software it says: there is no communication provider

I need to connect it to the postgres database.

Any idea?

+6
source share
2 answers

MySQL, PostgreSQL, Microsoft SQL, ODBC providers:

sudo apt-get install libqt4-sql-mysql libqt4-sql-psql libqt4-sql-sqlite libqt4-sql-odbc libqt4-sql-tds 
+17
source

After installing libqt4-sql-psql (qt4 postgres adapter), the problem was resolved.

 apt-get install libqt4-sql-psql 
+5
source

Source: https://habr.com/ru/post/919480/


All Articles