I am trying to connect to a PostgreSQL 9.1 database using Oracle SQL Developer 3.0.04, but so far I have no success.
Firstly, if I add a third-party driver by settings, when adding a new connection there is no tab for PostgreSQL (it works fine for MySQL, though). I am using the JDBC4 driver version 9.1, but I tried JDBC3 of the same version and still get the same.
Secondly, there is nothing like the manual configuration tab when adding a new connection. The closest Advanced option is on the Oracle tab, where I can provide my own URL, but it fails because it complains about the selected driver (of course).
Finally, I connected the import connection from the XML file (contents below), but it only displays my schemas and does not show my tables inside them.
So my question is: Does Orable SQL Developer support PostgreSQL joins? Is there any other way to display tables in ObjectViewer?
<?xml version = '1.0' encoding = 'UTF-8'?> <References xmlns="http://xmlns.oracle.com/adf/jndi"> <Reference name="Lumea" className="oracle.jdeveloper.db.adapter.DatabaseProvider" credentialStoreKey="Lumea" xmlns=""> <Factory className="oracle.jdeveloper.db.adapter.DatabaseProviderFactory"/> <RefAddresses> <StringRefAddr addrType="user"> <Contents>lumea</Contents> </StringRefAddr> <StringRefAddr addrType="subtype"> <Contents>thirdParty</Contents> </StringRefAddr> <StringRefAddr addrType="customUrl"> <Contents>jdbc:postgresql://localhost:5432/versates</Contents> </StringRefAddr> <StringRefAddr addrType="SavePassword"> <Contents>true</Contents> </StringRefAddr> <StringRefAddr addrType="password"> <Contents>myencryptedpass</Contents> </StringRefAddr> <StringRefAddr addrType="driver"> <Contents>org.postgresql.Driver</Contents> </StringRefAddr> <StringRefAddr addrType="DeployPassword"> <Contents>true</Contents> </StringRefAddr> </RefAddresses> </Reference> </References>
sql oracle postgresql oracle-sqldeveloper
ramsvidor Sep 29 '11 at 4:40 2011-09-29 04:40
source share