If I run the following query: String query = "select a from b where c = 3;" Sql sql = new Sql(dataSource) sql.rows(query)
This works in H2, but fails when I test against a real Oracle 11g database. The issue is the semi-colon, which is reported as an "INVALID CHARACTER". Why doesn't this fail in H2? Can H2 be made to fail with such queries? -- 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.
