[JDBC] no suitable driver

2001-09-11 Thread Nick Fankhauser
Hi- I am getting the error message no suitable driver from a Tomcat application that used to work. The change that I made to cause this is that I originally accessed my database on the same server, but decided to change the URL to point my application at a database residing on another server.

Re: [JDBC] Patch for doc/jdbc.sgml

2001-09-11 Thread Bruce Momjian
Your patch has been added to the PostgreSQL unapplied patches list at: http://candle.pha.pa.us/cgi-bin/pgpatches I will try to apply it within the next 48 hours. Hello, Attached patch is correction for 'doc/jdbc.sgml' of PostgreSQL 7.1.3. Correction content: * I revised a

Re: [JDBC] Fwd: Re: [GENERAL] unicode in 7.1

2001-09-11 Thread Marko Kreen
On Tue, Sep 11, 2001 at 11:39:38AM -0700, Culley Harrelson wrote: Ack! I guess I am hitting this problem I had my database rebuilt to use UNICODE encoding. Data now appears correctly in pgsql but not when filtered through JDBC. Unfortunately Im using the open source

Re: [JDBC] no suitable driver

2001-09-11 Thread Michael Stephenson
Then I changed the dbUrl string to: private static final String dbUrl = jdbc:postgresql//wetwang.ontko.com/demo; Any thoughts about what I've done wrong here? This might not be the only problem, but your URL is missing a colon, should be: jdbc:postgresql://wetwang.ontko.com/demo

Re: [HACKERS] [JDBC] Troubles using German Umlauts with JDBC

2001-09-11 Thread Barry Lind
No this isn't a locale issue. This is a character set issue. Java is unicode based. Therefore it needs to convert data it receives from the server into unicode. In order to do this, it needs to know the character set that the server is sending back the data in. Locale issues like