RE: [sqlite] Newbie's first question about using SQLite in C++

2004-09-13 Thread Tim Anderson
> -Original Message-
> From: EzTools Support [mailto:[EMAIL PROTECTED] 
> Sent: 11 September 2004 00:30
> To: [EMAIL PROTECTED]
> Subject: Re: [sqlite] Newbie's first question about using 
> SQLite in C++
> 
> I would use the SqlitePlus COM DLL with .NET rather than try 
> to wrap it with managed C++ code.  See www.sqliteplus.com.

Why would you want the overhead of COM interop? Better to use one of the
ADO.NET providers for SQLite I would have thought.

Tim


Re: [sqlite] Newbie's first question about using SQLite in C++

2004-09-10 Thread WeiChin3



jb,
 
download the sqlite-source-3_0_6.zip file from http://www.sqlite.org/download.html. 
unzip it. build with the attached VC project file, you will end up with a 
sqlite3.lib static library.
 
You can build your project with this library and sqlite3.h file. These two 
files are all you need.
 
good luck.
 
wei