I have a query like:
SELECT id,name,province,enabled
FROM customers
WHERE enabled = 1 AND (name LIKE "%to%" OR province LIKE "%to%");
Using the same database on MAC or IPAD gives me different results.
On Mac it works as supposed and returns 11 records, but on an iPad returns 55 records ¿? (And strangely some of them have the field enabled = 0) really strange.
iPad app is done in Objective C with Xcode6
I suppose sqlite3 is not exactly the same version on both devices, and doesn't interpret in the same way the parenthesis priority.