Hello,
can someone please explain me the difference between the examples below:
(1)
$strWhereClause = "kdnnr <> '63808'" ;
(2)
$where = "kdnnr <> '63808'" ;
$strWhereClause = whereAdd ($strWhereClause, $where);
The reason of my question is, that with version (1) I get a wrong SQL-Query - but with version (2) it works?!
Thank you for your time
Michael