my query is
"select * from wb_customer where ( sFullName like '%test\'s%') order by sFullName asc"
the records such as test's are store in database but still it return empty row your suggestion for this
my query is
"select * from wb_customer where ( sFullName like '%test\'s%') order by sFullName asc"
the records such as test's are store in database but still it return empty row your suggestion for this
you should use:
"select * from wb_customer where ( sFullName like '%test''s%') order by sFullName asc"
try this:
"select * from wb_customer where ( sFullName like \'%test\'s%\') order by sFullName asc"