-
1. Re: DataBase for Iphone Development?
The Feldkircher Jun 8, 2011 9:18 AM (in response to MrEhsan)Hi
Here is a tutorial for using SQLite http://onlinewebapplication.com/2011/05/sqlite-tutorial-%E2%80%93-selecting-data.html
Hope it helps
-
2. Re: DataBase for Iphone Development?
MrEhsan Jun 9, 2011 9:19 PM (in response to The Feldkircher)thank you . but this is for Objective-c and c example.
i want SQlite for iphone with as3,Flash,air for iPhone Development.
-
3. Re: DataBase for Iphone Development?
The Feldkircher Jun 10, 2011 6:04 AM (in response to MrEhsan)Sorry, perhaps I should have read more of it first.
Although it does seem that SQLite is the main choice for Mobile Apps.
Here are more Tutorials related to SQLite - http://mobileorchard.com/iphone-sqlite-tutorials-and-libraries/
Here is a website dedicated to iphone SDK Development http://www.iphonedevsdk.com/ maybe there's something here for you.
Haven't found anything for SQLite and Flash, mostly Air projects.If I find something I'll let you know.
-
4. Re: DataBase for Iphone Development?
relaxatraja Jun 14, 2011 5:37 AM (in response to MrEhsan)Shared object supported in ios:
http://www.adobe.com/devnet/flash/articles/saving_state_air_apps.html
-
5. Re: DataBase for Iphone Development?
MrEhsan Jun 20, 2011 2:01 AM (in response to relaxatraja)var so:SharedObject = SharedObject.getLocal("alltimeHighScore");
score_txt.text = so.data.score;
so.data.score = 13562;
so.flush();this is SharedObject Code very very simple . one moment open save 13562 , and close. open again . not show any thing ?
whay my problem ?
-
6. Re: DataBase for Iphone Development?
relaxatraja Jun 20, 2011 10:05 PM (in response to MrEhsan)http://www.emanueleferonato.com/2008/12/28/understanding-as3-shared-objects/
Test the above code first on your local desktop pc and then try with Iphone


