Open-Source projects, any good links? [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Anyone have any good open-source projects or links. Preferrably 3.0+ since 2.x is being fzed out.

Check out this project
http://code.google.com/p/chibiorm/
It's an Object-Relational Mapping (ORM) framework for the iPhone. (it's like Hibernate/JPA for Java) This allows you to use objects to represent your database tables. That way you only deal with objects and not with SQL.

Related

Architecture patterns applied in Eclipse IDE? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
does anybody know which architecture patterns the eclipse team applied to their eclipse IDE?
Thank you
The Book The Architecture of Open Source Applications contains a chapter about the design and architecture of eclipse. You can read the chapter online here.

how to store database IOS program [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm a newbie, and i'm trying to re-code a programe like this:foodlover . but i don't know how to store database to this application. Can some one help me? thanks alot
SQLite is good if you want to use a database directly. If you'd rather think in terms of objects, look at Core Data.
I found this tutorial helpful when I started trying to wrap my head around Core Data;
Core Data Basics - Tim Roadley

wicket framework [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm now working on a software and decided to choose apache wicket to be my framework, but we're a team and each one of us uses a different Operating system.
I wanted to know if wicket is compatible with which operating systems?
Erm,... Wicket is a Java library. So if you can use Java on your OS you can use Wicket.

Please help me with your inputs [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I would like to know where i can learn about core data model. please explain me in simple words that how to work with core data model and it its uses.
really i feel very tough to understand about core data model.
Thanks for any help.
Have a look at this website, it covers alot of subjects regarding iOS development, if I remember correctly there is stuff on there about Core Data http://www.raywenderlich.com/tutorials

can someone guess the Database Schema of Facebook? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I'm really interested to know how actually would be the database schema of Facebook? How many databases, tables and fields would be maintained? How is the updating done?
FWIW, here's a podcast from ITconversations describing Facebooks LAMP-stack. They seem to go with KISS as far as database schema goes.