> >#include <stdio.h>
> >#include <stdlib.h>
> >#include <iostream>
> >#include <string.h>
> >#include <sqlite3.h>
> >
> >int main()
> >{
> >    // create the database
> >    sqlite3 *db;
> >    int rc;
> >
> >    rc = sqlite3_open("cmx.db", &db);
> >}
> 
> This code will not create a database file, because there is
> no schema to store.
> You have to create at least one table in the database to
> convince sqlite it's worth to create it.


This code is just BAREBONES code that will produce the error I'm getting.

> 
> >What folders should I be looking in to verify that 
> >sqlite3 is where it needs to be on my system?
> 
> Try:
> 
> find / -name '*sqlite*' -ls | more
> 
> It will take quite a while, but if it's your personal system
> it won't hurt anybody.


it is my personal machine - I'll give that a try. I've searched for other 
standard c++ header files - I'll try this search see what comes up.


thanks!

_________________________________________________________________
Rediscover HotmailĀ®: Get quick friend updates right in your inbox. 
http://windowslive.com/RediscoverHotmail?ocid=TXT_TAGLM_WL_HM_Rediscover_Updates1_042009
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to