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.
(
Thanks Michael & Antonio!
>your URL is missing a colon
Adding the missing colon took care of the problem & got my demo back on line
with just 15 minutes to spare before the "business day" begins... If I were
running a commercial database, I'd still be waiting for the tech support
folks to wander
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
Culley,
What do you get when you issue the following select statements:
select getdatabaseencoding();
select datname, encoding from pg_database;
thanks,
--Barry
Culley Harrelson wrote:
> Ack! I guess I am hitting this problem
>
> I had my database rebuilt to use UNICODE encoding. Dat
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 DbConnectio
> 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
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 collatio
Hello,
Attached patch is correction for 'doc/jdbc.sgml' of PostgreSQL 7.1.3.
Correction content:
* I revised a mistake of type (copy and paste).
* I revised multiplicity of description.
Please review,
--
Ryouichi Matsuda
jdbc.sgml.diff
---(end of broadcast)-