Andrew Rothstein
2010-07-04 04:36:35 UTC
When I try to connect to my database:
the database url is of the form : jdbc:hsqldb:file:/path/to/database
java.lang.NoSuchMethodError:
org.hsqldb.DatabaseURL.parseURL(Ljava/lang/String;ZZ)Lorg/hsqldb/persist/HsqlProperties;
at org.hsqldb.jdbc.JDBCDriver.getConnection(JDBCDriver.java:267)
at org.hsqldb.jdbc.JDBCDriver.connect(JDBCDriver.java:245)
at java.sql.DriverManager.getConnection(DriverManager.java:582)
at java.sql.DriverManager.getConnection(DriverManager.java:185)
I'm just taking a file based database, archiving it, moving it across
my network, unarchiving it, and then attempt to connect to the clone.
I'm using TEXT TABLEs inside the database but the text files are
arriving on the back end intact.
I've looked at the code and I'm thoroughly confused. I don't see
anything offensive about the line where it's puking in its shoes. Any
suggestions? Has anyone seen this type of error before?
regards, Andrew
the database url is of the form : jdbc:hsqldb:file:/path/to/database
java.lang.NoSuchMethodError:
org.hsqldb.DatabaseURL.parseURL(Ljava/lang/String;ZZ)Lorg/hsqldb/persist/HsqlProperties;
at org.hsqldb.jdbc.JDBCDriver.getConnection(JDBCDriver.java:267)
at org.hsqldb.jdbc.JDBCDriver.connect(JDBCDriver.java:245)
at java.sql.DriverManager.getConnection(DriverManager.java:582)
at java.sql.DriverManager.getConnection(DriverManager.java:185)
I'm just taking a file based database, archiving it, moving it across
my network, unarchiving it, and then attempt to connect to the clone.
I'm using TEXT TABLEs inside the database but the text files are
arriving on the back end intact.
I've looked at the code and I'm thoroughly confused. I don't see
anything offensive about the line where it's puking in its shoes. Any
suggestions? Has anyone seen this type of error before?
regards, Andrew