I will like to setup a database for my game
but I find that seem unity do not have any build in database, isn’t it?
If I do not want to store all my data in a txt file,
are there any simple ways for me to set up a database for my mobile game?
It is not a online game hence I think I should not access the database though internet but from local derive.
Use [SQLite][1], [SQLite entry on unity wiki][2]
Optionally and for extra credit, create a series of classes and serialize to
[3] or [Json][4], put it in the file system or attempt to put it in [PlayerPrefs][5].
[1]: http://wgcreativesolutions.wordpress.com/2014/01/23/using-sqlite-database-in-unity3d-4-3-3f/
[2]: http://wiki.unity3d.com/index.php/SQLite
[3]: http://wiki.unity3d.com/index.php?title=Saving_and_Loading_Data:_XmlSerializer
[4]: http://wiki.unity3d.com/index.php/SimpleJSON
[5]: http://docs.unity3d.com/ScriptReference/PlayerPrefs.html