I'm trying to set up a remote connection to PostgreSQL 9.2 under Windows. On the server in pg_hba.conf
added
host all postgres 192.168.0.101 trust
and in postgresql.conf
listen_addresses = '*'
There is an application using ADO.NET. For connection to a DB I use OdbcConnection. Crashes with:
[Microsoft] [ODBC Driver Manager] Data source not found and default driver not specified
The ODBC connector is installed, but when trying to test connect a message that the server is not responding. I understand that the question is not quite here ... but still: what to do with this beast (PostgreSQL) in this question?
PS I use it for the first time, I need to measure the execution time of the request from my client to different types of DBMS, therefore I use Postgre.