user2830876
user2830876

Reputation: 85

Hsqldb version issue: Client driver version greater than . is required

I am getting following error in my hsqldb server.

[Server@85ede7b]: [Thread[HSQLDB Connection @17bf2dab,5,HSQLDB Connections @85ede7b]]: 0:Failed to connect client. Stack trace follows. org.hsqldb.HsqlException: Client driver version greater than '-268.-50.-11.-82' is required. HSQLDB server version is '2.3.2' at org.hsqldb.error.Error.error(Unknown Source) at org.hsqldb.server.ServerConnection.init(Unknown Source) at org.hsqldb.server.ServerConnection.run(Unknown Source) at java.lang.Thread.run(Thread.java:745)

please suggest

Upvotes: 2

Views: 3533

Answers (1)

fredt
fredt

Reputation: 24352

You are attempting to connect to a HSQLDB server but you are not using the HSQLDB version 2.3.2 jar on the client side. Check the jar is the same. Your connection url should also start with jdbc:hsqldb:hsql:.

The error also happens when you connect to HSQLDB server from software programs that are not related to HSQLDB, for example a web browser.

Upvotes: 2

Related Questions