vote up 0 vote down star

Hello, I want to use SQLite within my MFC application.

for that, i'll create an object whose job is to interact directly with the DB(SQLite) to insulate the rest of the app from the DB code.

can anyone point me to a good tutorial ? i'll need operations such as (create,delete,insert,update,createdb,dropdb and so on...)

Thanks.

flag

49% accept rate
Or can anyone explain this to me without me needing to read another tutorial ? – Attilah May 9 at 13:21

4 Answers

vote up 1 vote down

Have a look at this. This was really easy to port to MFC classes, but it will get you started.

http://www.codeproject.com/KB/database/CppSQLite.aspx

link|flag
vote up 0 vote down

Please define your problem more clearly. sqlite can be coding with c, and you can read the sample in their site.

link|flag
vote up 2 vote down

There's a page in the SQLite site that lists many available wrappers - here. The C++ wrapper Daniel mentions in his answer is probably the most common one, though it does not support Unicode and the SQLite dll that comes with it is quite dated. There's a Unicode version of that wrapper here, but it's a bit buggy and requires some more work. It could, however, save you the trouble of writing the whole thing from scratch.

link|flag
vote up 1 vote down

Or you can just do #include "sqlite3.h", add sqlite3.lib to your linker and use sqlite3.dll directly with the C api. That's what I did in my MFC app.

And you can even statically link sqlite3 into your app. Download the amalgamation and include it! It adds about 400 k.

link|flag
that's the better way to do it. that's what i'll do, i'll just use sqlite3.dll directly with the C api. – Attilah May 27 at 12:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.