Re: [h2] NPE In delete query

2017-08-09 Thread sergeyk
Yeah, but then I tried executing the query directly using an h2 client(downloaded from the official h2 site) and got the same NPE with the stack trace i initially posted. On Wednesday, August 9, 2017 at 2:34:57 PM UTC+3, Noel Grandin wrote: > > So if I am reading that right, the actual

Re: [h2] NPE In delete query

2017-08-09 Thread sergeyk
That's the full stack trace in our system: org.h2.jdbc.JdbcSQLException: General error: "java.lang.NullPointerException"; SQL statement: /* ExtendedConversationH2Dao._deletePartitipants */ DELETE FROM EXCONV_PARTICIPANTS_TBL WHERE EXCONVID=? [5-192] at

Re: [h2] NPE In delete query

2017-08-08 Thread sergeyk
That's the entire stack trace: delete from exconv_participants_tbl where exconvid='d26aa174-ba39-47c3-b587-7e80d33d1f1d'; General error: "java.lang.NullPointerException"; SQL statement: delete from exconv_participants_tbl where exconvid='d26aa174-ba39-47c3-b587-7e80d33d1f1d' [5-192]

Re: [h2] NPE In delete query

2017-08-07 Thread sergeyk
I'm normally using 192 on both, I just tried the newest client just to check if there were a fix. On Sunday, August 6, 2017 at 9:11:48 PM UTC+3, Noel Grandin wrote: > > you're using two different versions of H2 there, try using the same > version on both sides > -- This message may contain

[h2] NPE In delete query

2017-08-06 Thread sergeyk
Hello, I'm getting a NPE when I try to delete a specific entry (simple delete query with where key=value). That's the error and stack trace: General error: "java.lang.NullPointerException"; SQL statement: delete from exconv_participants_tbl where exconvid='d26aa174-ba39-47c3-b587-7e80d33d1f1d'