I need to match large strings with the fields of a column in mysqlDB. something like
%ERROR-kkl_ub{}: (from YAMios): Destination (name = sdasdays.s0sda.rindasdth.sbo98.sbssdao_sad) is not registered.
i pass this string to a variable say $signautre.
and am using this mysql command
$query = "select id, name, status "."from bucket "."where name rlike '$signature'";
&execQuery($query);
i get the error : FATAL ERROR: Operation failed execQuery() - Error in execQuery. An expression of non-boolean type specified in a context where a condition is expected, near 'rlike'
i am not able to do even a simple match using "rlike". even this command errors out with the same Fatal error.
$query = "select id, name, status "."from bucket "."where name rlike '^n'";
need help...
rlike? Please define the wordmatchin "I need to match large strings" – zerkms Feb 15 '12 at 3:55match– zerkms Feb 15 '12 at 4:39