Mailing Lists: Apple Mailing Lists
Image of Mac OS face in stamp
Re: MySQL and Cocoa - looking for samples, kits, docs, etc
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: MySQL and Cocoa - looking for samples, kits, docs, etc



In addition to what other posters have said, consider the goals of your application.

If your goal is to simply create a data-oriented desktop application, I'd strongly recommend using Core Data. That way you won't have to deploy a client-server database as part of your application. On the other hand, if your goal is to create a large network-oriented multi- user application with a desktop component, a client-server database might be more appropriate.

The dividing line between the two cases -- single-user or networked multi-user -- can be fuzzy as well. For example, you can use Core Data with an SQLite persistent store located on a shared filesystem to implement workgroup applications so long as the shared filesystem supports appropriate file locking and/or you won't have a lot of users writing to the database at once. (Lots of simultaneous writes and deficient file locking can both significantly degrade performance; this is true for any shared-filesystem technology.)

Another approach to developing client-server applications for Mac OS X is to use Core Data on the client side to manage the object graph representing data retrieved from and to send to the server, and to use web servers (whether XML-RPC, SOAP, or REST/document-based) to communicate between the client and server. This way I can abstract the interface between the client and the server -- rather than rely on sending raw database queries and result sets back and forth -- and also achieve the scalability benefits of avoiding a shared filesystem.

Which category of application above best describes your development goal?

  -- Chris

_______________________________________________

Cocoa-dev mailing list (email@hidden)

Do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


References: 
 >MySQL and Cocoa - looking for samples, kits, docs, etc (From: "Smith, Steven (RSAA Storage)" <email@hidden>)



Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2011 Apple Inc. All rights reserved.