Answer by cristoph1
A really dedicated solution as local data storage for your games is Siaqodb see more info here: [http://siaqodb.com/?p=482][1] - easy to use, very simple API - works on all platforms: PC, Mac, iOS,...
View ArticleAnswer by Geoff Coope
Although the solution from Cristoph sounds good it is a commercial solution whereas iOS already supports SQLite via cocoa so I too would like to know how to integrate SQLite with Unity iOS Basic.
View ArticleAnswer by bioduds
This is the only solution I've found: http://u3d.as/content/mono-sapiens-ltda/mono-sqlite/2Qw You can't use SQLite for iOS Basic because of the .NET socket restriction Unity Basic Policy acknowledges:...
View ArticleAnswer by Oksana Iashchuk
http://u3d.as/content/orange-tree/sqlite-kit/3ka That is 100% managed code, full SQLite3 support, all platforms. No native dependencies.
View ArticleAnswer by busta-gara
hi, you can use this code its easy to use and its free for your individual use, use example: SqliteDatabase sqlDB = new SqliteDatabase(“config.db”); string query = “INSERT INTO User(UserName) VALUES(...
View Article