your jdbc driver is probably not recognizing the jdbcUrl you're
passing in. the url string is basically dependent on the driver and
can be almost any format it wants. you'll want to verify the url
string as one the driver recognizes.
also, the DriverManager has a method call for returning a list of all
registered drivers. you may also want to verify the driver you want is
there.
jae
Scott Fitzgerald writes:
> Thanks for tip. It got me past that line but now it stops at the next line:
>
> myConnection = java.sql.DriverManager.getConnection(jdbcUrl);
>
> and gives me an error... Exception in: R( /warfile + /dbtest.do + null) -
> java.lang.NullPointerException.
>
> Any more helpful hints?
>
> Thanks,
>
> Scott Fitzgerald
>