Hello.
I am implementing a simple login context.
I have a datasource over users table, when I do a filterData(), the SQL sentence is:
WHERE USER LIKE '%CAR%' AND PASSWORD LIKE '%CAR%'.
How can I do an exact filter?
Like:
WHERE USER = 'CAR' AND PASSWORD = 'CAR'.
Could it happen because the data types are string?
I think so because with number data type doesn't happen.
BstRgrds.
Carlos.
I am implementing a simple login context.
I have a datasource over users table, when I do a filterData(), the SQL sentence is:
WHERE USER LIKE '%CAR%' AND PASSWORD LIKE '%CAR%'.
How can I do an exact filter?
Like:
WHERE USER = 'CAR' AND PASSWORD = 'CAR'.
Could it happen because the data types are string?
I think so because with number data type doesn't happen.
BstRgrds.
Carlos.
Comment