Re: how to deploy the sqlite file in my Cocoa application installation

2010-07-17 Thread David Reed
On Jul 17, 2010, at 12:32 AM, Wayne Shao wrote: > Thanks! That is very helpful. I have added a data file in my project as you > suggested. > > I come from the linux world, where this sort of things are done in > installation script or package post-install script. > I have never released an App

Re: how to deploy the sqlite file in my Cocoa application installation

2010-07-17 Thread Wayne Shao
Thanks! That is very helpful. I have added a data file in my project as you suggested. I come from the linux world, where this sort of things are done in installation script or package post-install script. I have never released an App on Mac. Is there any concept of App post install script? I jus

Re: how to deploy the sqlite file in my Cocoa application installation

2010-07-16 Thread Mike Abdullah
On 16 Jul 2010, at 13:27, davel...@mac.com wrote: > > On Jul 16, 2010, at 5:23 AM, Mike Abdullah wrote: > >> SQLite is not part of Cocoa, so this is the wrong list. You should either: >> >> 1) Find the SQLite docs/list >> 2) Use Core Data instead >> >> On 16 Jul 2010, at 02:39, Wayne Shao wro

Re: how to deploy the sqlite file in my Cocoa application installation

2010-07-16 Thread davelist
On Jul 16, 2010, at 5:23 AM, Mike Abdullah wrote: > SQLite is not part of Cocoa, so this is the wrong list. You should either: > > 1) Find the SQLite docs/list > 2) Use Core Data instead > > On 16 Jul 2010, at 02:39, Wayne Shao wrote: > >> Hi, >> >> I am using sqlite in my cocoa application (

Re: how to deploy the sqlite file in my Cocoa application installation

2010-07-16 Thread Mike Abdullah
SQLite is not part of Cocoa, so this is the wrong list. You should either: 1) Find the SQLite docs/list 2) Use Core Data instead On 16 Jul 2010, at 02:39, Wayne Shao wrote: > Hi, > > I am using sqlite in my cocoa application (for regular mac desktop/laptop). > > 1. How do I initialize the sqli

how to deploy the sqlite file in my Cocoa application installation

2010-07-15 Thread Wayne Shao
Hi, I am using sqlite in my cocoa application (for regular mac desktop/laptop). 1. How do I initialize the sqlite (e.g, make sure empty tables with the correct schema is put at the right path) as part of the application installation? 2. Any documentation on the install/packaging of my applicatio