vote up 0 vote down star

I have a SQLite DB with one Table : Folder.

when, i try to access it by running this query ("select * from Folder") against the DB, I get an error : SQLITE_DB[4] . I am using the CppSQLite3DB library ( www.codeproject.com/KB/database/CppSQLite.aspx ) .

here is my code :

#include "CppSQLite.h"

try
{
    CString sql;
    CppSQLite3Query q;
    sql.Format(_T("select * from Folder;"));
    CppSQLite3DB db;
    db.open(DBFile);
    CT2CA x(sql); //allows to convert CString to const char*.
    const char* st = x;
    //CppSQLite3Table tbl = db.getTable("select * from Folder;");
    q = db.execQuery(st);

    int count = 0;

    while(!q.eof())
    {

    	CFolder folder(CString(q.fieldValue(2)));
    	allFolders.SetAtGrow(count,folder);
    	q.nextRow();
    	count++;
    }

    db.close();
    return TRUE;
}
catch(CppSQLite3Exception& e)
{
    MessageBox(NULL,CString(e.errorMessage()),_T("Error!"),0);
    MessageBox(NULL,_T("An error occured when getting all folders from DB."),CString(e.errorMessage()),0);	
}

I noticed CppSQLite3DB::execQuery() calls the function CppSQLite3DB::compile which in turns calls the sqlite function sqlite3_prepare() and that's where the function fails. I think the problem is with sqlite3_prepare.

How do I correct it ?

Thanks.

flag

49% accept rate
What tool or library are you using to access SQLite? What version? How do you open the database? – Doug Currie May 17 at 14:46
I use CppSQLite to access SQLite. the version of SQLite is 3. – Attilah May 17 at 14:47
I found CppSQLite library at www.codeproject.com . – Attilah May 17 at 14:47
How did you "get" the error "SQLITE_DB[4]" -- show us your code. – Doug Currie May 17 at 14:58
Doug Currie, I edited the question. you can see my code in the new edit. – Attilah May 18 at 10:17

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.