HI All,
I have this piece of code:
sqlite3 *db;
const char KDbName[] = "c:\\test\\Db1.db";
int rc = sqlite3_open (KDbName, &db);
if (rc)
{
sqlite3_close (db);
return;
}its crashing while opening... Note: its on Symbian platform.. Db1.db is existing in the path. please let me know whats the problem regards, Deepak dhananjaya _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

