I am using the Postgres Dataadapter Version 2.5 with Postgres 8.1.4. When I select a large amount of Data I get Error Code 08006 (Connection fault or Host does not respond).
Here is my connect string: 
SERVER=xxx; DATABASE=xxx; USER=xxx; PASSWORD=xxx; pooling=false; protocol=2; Connect Timeout=30;
The error does not show up every time. When I select a small amount of data there is usually no problem but when I select a large table I often get the error message.
I cant imagine network problems being a reason for this. 
Can anybody help?
			
									
									
						PostgreSQL 8.1.4 - Error 08006
We have never been reported such error. Try to set  in the ConnectionString.
			
									
									
						Code: Select all
protocol=3;- 
				Guest