I'm doing the following on the Server
Code: Select all
String sql = "SELECT users.id as sqlID FROM users WHERE users.id="+6;
ISFSArray queryRes = dbManager.executeQuery(sql);
Code: Select all
(sfs_object)
(int) id: 6
This is obviously a big problem since it breaks complex queries such as:
Code: Select all
"SELECT users.id as sqlID, weapons.id as weaponID FROM ...."Also (but i think you're already aware of this), the field TINYINT(1) cannot be read (returns SKIPPING), TINYINT(4) however works.
Thanks.