iphone - Client-side database in Actionscript 3 (built into the client, not read from a server database) -


i'm looking create way store items game i'm making using flash. there's going many items in game , want store them in database built client , doesn't require connecting server.

i know write parser , import spreadsheet file game, i'd not reinvent wheel if don't have to.

is there way or library that's created reading client side database? guess i'm looking way use database style system on client side without having build ground up.

look @ sharedobjects:

var savedata:sharedobject = sharedobject.getlocal("gamename"); savedata.data.test = 5; savedata.flush();  // ... restart application , then: trace(savedata.data.test); // 5 

Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -