On Mar 17, 10:26 pm, Thomas Mueller <[email protected]> wrote: > Hi, > > You can still download version 1.2.127 > here:http://www.h2database.com/html/download.htmlor > here:http://code.google.com/p/h2database/downloads/list > > If it still doesn't work, it might be an uppercase / lowercase > problem. Could you do a "dir" and then copy & paste the path and file > name to ensure it matches exactly? > > Regards, > Thomas
I downloaded 1.2.127 and the H2 Console is able to open my database and I can make queries from it, but now my program is throwing a NullPointerException when I try to make the connect. I dug into the H2 code and followed it into the Java Core code to find that when the FileLock is trying to write a new Property value. In the Property code, a BufferedWriter.newLine() is being called and in the Writer.write() code called from newLine(), the lineSeparator field is null! I'm pretty sure that's my problem somehow. Thanks for the help in getting me this far. I'll have to figure out where I'm overwriting something such that's it's causing problems in the Java Core code. -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
