Discussion:
How to set up sqlite3 with Dev C++
Stephen Sutherland
2007-07-31 05:54:07 UTC
Permalink
Hi;
I'm pretty much a newbie.
I'm just about finishing a PC a game with Dev C++.
I decided to use sqlite3 to load content from XML repository (for user write access) into the database and then sort and pull out the appropriate information as needed.
However, I am trying to figure out SET UP sqlite3 with Dev C++ - so that I can start coding. Currently, I am trying to run the quick start program which includes <sqlite3.h> The compiler doesn't find sqlite3.h
I don't want to include the source code.
I was hoping there was some way that I could somehow simply linke the sqlite3.dll and sqlite3.def so that I could code for my specific needs.
Or do I have to include the source to get it working.
Thanks in advance
Stev


---------------------------------
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links.
John Stanton
2007-07-31 09:04:34 UTC
Permalink
You don't have to include the Sqlite source to use DevC0++. Just
include the link library.
Post by Stephen Sutherland
Hi;
I'm pretty much a newbie.
I'm just about finishing a PC a game with Dev C++.
I decided to use sqlite3 to load content from XML repository (for user write access) into the database and then sort and pull out the appropriate information as needed.
However, I am trying to figure out SET UP sqlite3 with Dev C++ - so that I can start coding. Currently, I am trying to run the quick start program which includes <sqlite3.h> The compiler doesn't find sqlite3.h
I don't want to include the source code.
I was hoping there was some way that I could somehow simply linke the sqlite3.dll and sqlite3.def so that I could code for my specific needs.
Or do I have to include the source to get it working.
Thanks in advance
Stev
---------------------------------
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links.
-----------------------------------------------------------------------------
To unsubscribe, send email to sqlite-users-unsubscribe-CzDROfG0BjIdnm+***@public.gmane.org
-----------------------------------------------------------------------------
Stephen Sutherland
2007-07-31 13:59:20 UTC
Permalink
by dynamic link library. i'm gusiness you are talking about the sqlite3.dll.

What is hte procedure to link it ?
it seems to me that as long as I have an include to <sqlite3.h> , I need to have that file on my PC somewhere.

Stephen

John Stanton <johns-***@public.gmane.org> wrote:
You don't have to include the Sqlite source to use DevC0++. Just
include the link library.
Post by Stephen Sutherland
Hi;
I'm pretty much a newbie.
I'm just about finishing a PC a game with Dev C++.
I decided to use sqlite3 to load content from XML repository (for user write access) into the database and then sort and pull out the appropriate information as needed.
However, I am trying to figure out SET UP sqlite3 with Dev C++ - so that I can start coding. Currently, I am trying to run the quick start program which includes The compiler doesn't find sqlite3.h
I don't want to include the source code.
I was hoping there was some way that I could somehow simply linke the sqlite3.dll and sqlite3.def so that I could code for my specific needs.
Or do I have to include the source to get it working.
Thanks in advance
Stev
---------------------------------
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links.
-----------------------------------------------------------------------------
To unsubscribe, send email to sqlite-users-unsubscribe-CzDROfG0BjIdnm+***@public.gmane.org
-----------------------------------------------------------------------------




---------------------------------
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links.
Stephen Sutherland
2007-07-31 14:33:30 UTC
Permalink
never mind.
It seems I have it. It seems I had to include the source - the sqlite3.h file



Stephen Sutherland <stephensutherland-/***@public.gmane.org> wrote:
by dynamic link library. i'm gusiness you are talking about the sqlite3.dll.

What is hte procedure to link it ?
it seems to me that as long as I have an include to , I need to have that file on my PC somewhere.

Stephen

John Stanton wrote:
You don't have to include the Sqlite source to use DevC0++. Just
include the link library.
Post by Stephen Sutherland
Hi;
I'm pretty much a newbie.
I'm just about finishing a PC a game with Dev C++.
I decided to use sqlite3 to load content from XML repository (for user write access) into the database and then sort and pull out the appropriate information as needed.
However, I am trying to figure out SET UP sqlite3 with Dev C++ - so that I can start coding. Currently, I am trying to run the quick start program which includes The compiler doesn't find sqlite3.h
I don't want to include the source code.
I was hoping there was some way that I could somehow simply linke the sqlite3.dll and sqlite3.def so that I could code for my specific needs.
Or do I have to include the source to get it working.
Thanks in advance
Stev
---------------------------------
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links.
-----------------------------------------------------------------------------
To unsubscribe, send email to sqlite-users-unsubscribe-CzDROfG0BjIdnm+***@public.gmane.org
-----------------------------------------------------------------------------




---------------------------------
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links.


---------------------------------
Pinpoint customers who are looking for what you sell.
John Stanton
2007-08-01 22:57:42 UTC
Permalink
Post by Stephen Sutherland
never mind.
It seems I have it. It seems I had to include the source - the sqlite3.h file
by dynamic link library. i'm gusiness you are talking about the sqlite3.dll.
What is hte procedure to link it ?
it seems to me that as long as I have an include to , I need to have that file on my PC somewhere.
Stephen
You don't have to include the Sqlite source to use DevC0++. Just
include the link library.
Post by Stephen Sutherland
Hi;
I'm pretty much a newbie.
I'm just about finishing a PC a game with Dev C++.
I decided to use sqlite3 to load content from XML repository (for user write access) into the database and then sort and pull out the appropriate information as needed.
However, I am trying to figure out SET UP sqlite3 with Dev C++ - so that I can start coding. Currently, I am trying to run the quick start program which includes The compiler doesn't find sqlite3.h
I don't want to include the source code.
I was hoping there was some way that I could somehow simply linke the sqlite3.dll and sqlite3.def so that I could code for my specific needs.
Or do I have to include the source to get it working.
Thanks in advance
Stev
---------------------------------
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links.
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
---------------------------------
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links.
---------------------------------
Pinpoint customers who are looking for what you sell.
-----------------------------------------------------------------------------
To unsubscribe, send email to sqlite-users-unsubscribe-CzDROfG0BjIdnm+***@public.gmane.org
-----------------------------------------------------------------------------
John Stanton
2007-08-01 23:07:24 UTC
Permalink
Sqlite3.h is not the source, it is the header file to be used by ypur
application.
Post by Stephen Sutherland
never mind.
It seems I have it. It seems I had to include the source - the sqlite3.h file
by dynamic link library. i'm gusiness you are talking about the sqlite3.dll.
What is hte procedure to link it ?
it seems to me that as long as I have an include to , I need to have that file on my PC somewhere.
Stephen
You don't have to include the Sqlite source to use DevC0++. Just
include the link library.
Post by Stephen Sutherland
Hi;
I'm pretty much a newbie.
I'm just about finishing a PC a game with Dev C++.
I decided to use sqlite3 to load content from XML repository (for user write access) into the database and then sort and pull out the appropriate information as needed.
However, I am trying to figure out SET UP sqlite3 with Dev C++ - so that I can start coding. Currently, I am trying to run the quick start program which includes The compiler doesn't find sqlite3.h
I don't want to include the source code.
I was hoping there was some way that I could somehow simply linke the sqlite3.dll and sqlite3.def so that I could code for my specific needs.
Or do I have to include the source to get it working.
Thanks in advance
Stev
---------------------------------
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links.
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
---------------------------------
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links.
---------------------------------
Pinpoint customers who are looking for what you sell.
-----------------------------------------------------------------------------
To unsubscribe, send email to sqlite-users-unsubscribe-CzDROfG0BjIdnm+***@public.gmane.org
-----------------------------------------------------------------------------
John Stanton
2007-08-01 22:56:40 UTC
Permalink
If you are using the Sqlite API you need sqlite3.h. Put it in your
regular "include" directory and Dev C++ will find it.
Post by Stephen Sutherland
by dynamic link library. i'm gusiness you are talking about the sqlite3.dll.
What is hte procedure to link it ?
it seems to me that as long as I have an include to <sqlite3.h> , I need to have that file on my PC somewhere.
Stephen
You don't have to include the Sqlite source to use DevC0++. Just
include the link library.
Post by Stephen Sutherland
Hi;
I'm pretty much a newbie.
I'm just about finishing a PC a game with Dev C++.
I decided to use sqlite3 to load content from XML repository (for user write access) into the database and then sort and pull out the appropriate information as needed.
However, I am trying to figure out SET UP sqlite3 with Dev C++ - so that I can start coding. Currently, I am trying to run the quick start program which includes The compiler doesn't find sqlite3.h
I don't want to include the source code.
I was hoping there was some way that I could somehow simply linke the sqlite3.dll and sqlite3.def so that I could code for my specific needs.
Or do I have to include the source to get it working.
Thanks in advance
Stev
---------------------------------
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links.
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
---------------------------------
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links.
-----------------------------------------------------------------------------
To unsubscribe, send email to sqlite-users-unsubscribe-CzDROfG0BjIdnm+***@public.gmane.org
-----------------------------------------------------------------------------
Continue reading on narkive:
Loading...