I currently have this code in place:
query = "select ID_OBJECT from "+Config.props.getProperty("Ob.SchemaName.Objects")+".sdm_doc_info where name like ? and typefileverscurr = 'DWG'";
However this only returns results that match the upper case DWG. I would like my search to be case insensitive. How can I use ?i in this case? I tried the following but my Eclipse does not like it:
query = "select ID_OBJECT from "+Config.props.getProperty("Ob.SchemaName.Objects")+".sdm_doc_info where name like ? and typefileverscurr.matches('(?i:dwg)')";
Thanks for your help.