Hey,
I'm trying to filter some records when I'm using a DB read.
I've got a colomn with 'status', and I would like to read all values, except the status 6.
So in DB read, when I use the return array('status' => '4');, the function works.
But when i use return array('status' != '6');, it gaves me an error? I expected it would give me all things, except 6.
What am I doing wrong?
I'm trying to filter some records when I'm using a DB read.
I've got a colomn with 'status', and I would like to read all values, except the status 6.
So in DB read, when I use the return array('status' => '4');, the function works.
But when i use return array('status' != '6');, it gaves me an error? I expected it would give me all things, except 6.
What am I doing wrong?