Subject | Re: something wrong with JDBC |
---|---|
Author | Roman Rokytskyy |
Post date | 2003-11-11T09:07:47Z |
> Compiling good, but when I'm try to execute, system show errorWhat about replacing last line with
> message "Unable to load driver"
> ...
> String driverName = "org.firebirdsql.jdbc.FBDriver";
> ...
> try { Class.forName ("driverName"); }
try { Class.forName (driverName); }
(remove quotes, you were trying to load driver called "driverName").
Roman