> Well, I tried that, moving the DriverManager.getConnection to right
> after the Class.forName, and it still doesn't work. Same Error message
[quoted text clipped - 5 lines]
>
> Mike
Slow down and Look at the code I gave you, again. It was not just doing
what you told me what you did.
*My statement*
conn = DriverManager.getConnection("jdbc:hsqldb:" + dbPath, "sa", "");
*Your statement*
conn = new DriverManager.getConnection("jdbc:hsqldb:" +dbPath,"sa","");

Signature
Thanks in Advance...
IchBin, Pocono Lake, Pa, USA
http://weconsultants.servebeer.com/JHackerAppManager
__________________________________________________________________________
'If there is one, Knowledge is the "Fountain of Youth"'
-William E. Taylor, Regular Guy (1952-)
mike - 17 Jan 2006 03:10 GMT
ahh!!! I owe you one. Haha. Yeah. That worked. Thanks man.