JDBC-IE5-no suitable driver

From: Christoph Fister <fister(at)uni-muenster(dot)de>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: JDBC-IE5-no suitable driver
Date: 2000-01-28 16:08:49
Message-ID: 3891BF11.1C0941F6@uni-muenster.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

running Microsoft's IE 5 ends in trouble when I start an applet that
should
display the result of a database access via jdbc under postgresql 6.4.2.
Although the jdbc-driver seems to be successfully loaded because
the initial try-block
try { Class.forName("postgresql.Driver"); }
catch(Exception e) { ... }
throws no exception or error message
the following try-block
try {
Vector results = new Vector();
Connection con = DriverManager.getConnection(url, user,
passwd);
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery(query);
....
}
catch(SQLException ex)
{
System.out.println("SQLException: " + ex.getMessage());
}
throws a SQLException and reports:

"SQLException: no suitable driver"

running Netscapes Navigator, the same applet displays the result of the
database query via jdbc under postgresql 6.4.2 without any exception or
error.

thanks

Christoph Fister
fister(at)uni-muenster(dot)de

Browse pgsql-interfaces by date

  From Date Subject
Next Message Constantin Teodorescu 2000-01-28 16:27:02 How to get the X or Y coordinate from a point field?
Previous Message EDEden 2000-01-28 16:01:20 jdbc and ie explorer