Hi, Could you send the complete stack trace please (including all "caused by").
Regards, Thomas On Fri, Nov 21, 2014 at 1:51 PM, Noel Grandin <noelgran...@gmail.com> wrote: > It's working for me, something like: > > Statement stat = conn.createStatement(); > stat.execute("CREATE TABLE t1 (c1 INT)"); > stat.execute("INSERT INTO t1 SELECT X FROM SYSTEM_RANGE(1, 10);"); > prep = conn.prepareStatement("DELETE FROM t1 WHERE c1 IN (SELECT x > from TABLE(x INT = ?))"); > prep.setObject(1, new Integer[] { 1, 2 }); > assertEquals(2, prep.executeUpdate()); > rs = stat.executeQuery("SELECT COUNT(*) FROM t1"); > rs.next(); > assertEquals(8, rs.getInt(1)); > > works fine. > > > -- > You received this message because you are subscribed to the Google Groups > "H2 Database" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to h2-database+unsubscr...@googlegroups.com. > To post to this group, send email to h2-database@googlegroups.com. > Visit this group at http://groups.google.com/group/h2-database. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to h2-database+unsubscr...@googlegroups.com. To post to this group, send email to h2-database@googlegroups.com. Visit this group at http://groups.google.com/group/h2-database. For more options, visit https://groups.google.com/d/optout.