How do I do a WHERE COLUMN LIKE '%SearchTerm%'
with the DevArt dotConnect for Oracle libraries?
Ideally using a CommandParameter
for the SearchTerm?
I've tried the following with no joy:
cmd.CommandText =
"SELECT ID, COLUMN_A, COLUMN_B FROM TABLE_A
WHERE COLUMN_A LIKE :SearchTerm";
I've got it working with:
cmd.CommandText =
"SELECT ID, COLUMN_A, COLUMN_B FROM TABLE_A
WHERE COLUMN_A LIKE :SearchTerm";
cmd.Parameters.AddWithValue("SearchTerm", "%" + term.Replace('%', ' ') + "%");
But I'm not happy with encasing the term with %
signs - is there a correct or better way?
Try this solution: