Hi, I use the following code to read the data from sqlite
var userVOasByteArray:ByteArray = result.data[0]["USER"] as ByteArray ; userVOasByteArray.position = 0; var user:userVO = userVOasByteArray.readObject() as userVO; userVOasByteArray has data but user is null. Do you know why this happens? Thanks Mark

