I'm trying to initialise a connection to Pockertracker 3's database with Matlab.
I noticed that the jdbc folder was missing from my postgreSQL 8.4 installation, but have downloaded the jdbc driver and linked it to Matlab.
If anyone could list the files in the jdbc folder of their installation, I may be able to spot something I am missing.
In terms of the connection to the database, I assume the following fields are correct, since I haven't changed the default
dbname='PT3 DB';
username='postgres';
password='dbpass';
dburl = 'jdbc:postgresql://localhost:5432/PT3 DB'
driver = ''org.postgresql.Driver'
Any help on this matter would be greatly appreciated
