java - parse.com - Query code works fine on all classes other than "user" database?? ACL Issue? -
i have weirdest issue.. code works on every single other table other user class. on earth going on?
example:
parsequery query2 = new parsequery("useraccess"); //table/class name. in test made new class test code works - , works.. query2.getinbackground("dhuisspseq", new getcallback() { public void done(parseobject object, parseexception e) { if (e == null) { //<<<<--- print textview see going on string test1 = object.getstring("user"); //"user" column i'm fetching textview b = (textview) findviewbyid(r.id.validuntil); b.settext(test1); } else { } } });
as mentioned created new class , tested same code , works. tried change class "user" users info stored default , objectid current user logged in. i tried both parseuser.getcurrentuser().getobjectid().tostring()
, tried adding plain text string above make sure correct. not return , error confirms it can't find anything??
please can me? i've been @ hours without luck. noticed acl field on user table. made sure contained public read + write.
thank you!
Comments
Post a Comment