Re: Embedded Database - SQLite
Re: Embedded Database - SQLite
- Subject: Re: Embedded Database - SQLite
- From: Saratchandra Kongara <email@hidden>
- Date: Thu, 24 Apr 2003 20:36:35 -0400
Thanks Marc.
Two things I noticed
1. The installation instructions on the website don't mention $make
install as the last step. After I called $make install , the library is
installed in /usr/local/lib
2. As far as the sqlite command line program is concerned, it is
actually placed in the folder where the $configure, $make and $make
install commands are invoked from.
Sarat
On Thursday, April 24, 2003, at 07:51 PM, Marc Weil wrote:
Well, to find where the program is located, just enter the command
'which
sqlite' on the command line (without the quotes, of course).
As for packaging the library with your application, it is done
automatically. If you add the library to your PB project and have it
added
to your target, it will actually be compiled into the binary with the
rest
of your application. The only way it wouldn't do this is if you didn't
add
it to your project, but instead linked to it. In this case, you would
have
to bundle it with your program. Otherwise, there's nothing to it but
to add
it! :-)
You said you can't find where the actual library was installed. You
might
want to look in /usr/lib since I think that's where most of the
libraries
that you can get online will be installed. Otherwise, add the usr
folder to
your list of areas to search in Find, select it, and deselect your hard
drives to look through all of the folders in usr. If you don't do
this, Find
will skip over usr because it is an invisible directory, and "normal"
OS X
users aren't supposed to know about its existence.
Hope that helps.
-- Marc Weil
On 4/24/03 7:22 PM, "Saratchandra Kongara" <email@hidden> wrote:
Hello,
I am looking at embedded database alternatives for Cocoa/Objective-C
application. So far SQLite (http://www.sqlite.org/) and its
objective-C
wrapper SQLDatabase 0.1 (http://blackholemedia.com/code/) look very
attractive. I downloaded the latest source code for SQLite database
and followed the instructions on the website. After installation
(make)
I am not able to find the library file /usr/local/lib/libsqlite.a or
the command line sqlite program. Are they installed at some other
location? Has anybody installed this database on OS X 10.2.5
successfully? Also Is there a way to package this library with the
application, so the end users won't have to install? Any help is
greatly appreciated. Thanks.
Regards
Sarat
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.