On May 1, 2009, at 7:58 AM, Joanne Pham wrote:

> Hi All,
> I have the application and it is crashed on  at ../src/vdbeapi.c:538  
> (sqlite3_mutex_enter(db->mutex);  by sqlite3_step.
> I couldn't nail down what was the root cause of this problem. Why it  
> crashed on sqlite3_mutex_enter API.
> Would you please shed some light on this?
> Thank in advance,
> JP
>
> Below is core file:
> sqlite3_step (pStmt=0x4012d0c3) at ../src/vdbeapi.c:538
>
> at ../src/vdbeapi.c:538 is
>     sqlite3_mutex_enter(db->mutex);
>     while( (rc = sqlite3Step(v))==SQLITE_SCHEMA

There is something wrong with the statement handle that you are
passing to sqlite3_step(). Possibly the handle has already been
passed to sqlite3_finalize() already.

Dan.


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

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

Reply via email to