Hi,

I have saved a object to sqlite.

but I can not retrieve it back to same type of object.

I use the following code,but obj1 is null and obj2 have data.
but I need the data also save in obj1.

           
var obj1:userVO = new userVO();
var obj2:Object = new Object();
                 
obj1 = result.data[0]["USER"] as userVO;
obj2 = result.data[0]["USER"]; 

Please help me and give me a idea how to fix it.

Thanks

Mark

Reply via email to