statement « hsqldb « Java Database Q&A





1. HSQLDB Statement and Java NaN doubles    stackoverflow.com

I'm currently using HSQLDB to save java data. Within theses datas, there are some Double, and some of them can be of values of NaN (described as 0.0/0.0 in the javadoc). ...

2. Problem with UPDATE statement in HSQLDB    coderanch.com

Hello, I have expirienced a strange behavior with the UPDATE statement in HSQLDB. When I update some record in my table, it changes my TIME and DATE columns to null despite the fact that I didn't mention them in the statement, e.g.: stmt.executeUpdate("UPDATE my_table SET age=15 WHERE user_name='malcom'"); and I get column "age" changed to "15", and also columns "time" and ...