On 13 May 2010 10:10, Prajeed chathuar <prajee...@dwisesolutions.com> wrote:
> Hi
> I am a sotware trainee of Bangalore,India base company...i am working for
> the first time in sqlite data baase..
> I am trying sqlite and vc++ for last one week iam not getting correct
> output.....there is no linking and compiling error but not getting correct
> output: here is the code
>
>
> int  sqlresult = 1;
> char sql[1024]="";
> int rc;
>
> sprintf(sql, "SELECT count(*) FROM table1;");
>
> rc = sqlite3_open("sqlite3pp.db", &db);
> if ( rc )
>   {
>        MessageBox("Unable to open database for record count","Database
> Result",MB_OK | MB_ICONERROR);
>   }
>
>
> In the above code my program is always returning 0X0000000(some hexadecimal
> value)from sqlite3_open() .

0X0000000 is hexadecimal representation of integer 0, value used to
represent symbol SQLITE_OK

> The data base is in the folder where the
> solution file is residing......i have included the sqlite3.lib file also
> which was extracted from sqlite3.def.
>
> Can any help me for the above problem
>
> Thanks
> Prajeed.c
> Software trainee
> Dwise solutions,Bangalore,India
>

Regards,
Simon
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to