Using PreparedStatement... >From a previous post here: https://groups.google.com/forum/#!topic/h2-database/FkjL7hwdQrc , i gather that I have to write something like that
SELECT NAZIV FROM PROGRAMI WHERE NAZIV LIKE '%' || ? || '%' When I do this: SELECT * FROM TESTTABLE WHERE NAME = ? where ?: "zzz" I get the result I want. ====== But when I do this: SELECT * FROM TESTTABLE WHERE NAME '%' || ? || '%' where ?: "z" I get zero rows. How to fix this? -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/h2-database. For more options, visit https://groups.google.com/d/optout.
