Excellent.  Thanks.

-----Original Message-----
From: Dennis Cote [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 13, 2004 3:03 PM
To: [EMAIL PROTECTED]
Subject: Re: [sqlite] sqlite with Borland C++ 5.02


Pigott, Paul wrote:
> Is there a pre-compiled binary for that?  Or do you just convert the
> .DLL to a .LIB with a utility?

You need to generate an Borland import library for the DLL using Borland's
IMPLIB utility. The command to use depends upon which version of sqlite you
are using.

For SQLite version 2

IMPLIB -a sqlite.lib sqlite.dll

or for SQLite version 3

IMPLIB -a sqlite3.lib sqlite3.dll

This will generate the appropriate .lib file which you will need to link to
your project. You will also need to copy the DLL to your applications
doirectory or the Windows/System directory so the application can load the
DLL when needed.

Reply via email to