Hello Guys. I have a problem with running SQLite. I am running linux 2.6.5 on ARM and basicaly problem si that my application is crushing on sqlite3_open() function while the sqlite3 command shell is running without problems.. I have tried to copy all defines but probably that is not enough to succesfully run my application. So far I have found tha application crashed at return from this function ( test done is originaly printed out) but I cant figure out why. since I dont have gdb working on that system. /******************/ SQLITE_PRIVATE int sqlite3OsOpen( sqlite3_vfs *pVfs, const char *zPath, sqlite3_file *pFile, int flags, int *pFlagsOut ){ DO_OS_MALLOC_TEST; // printf("SUM test done: %p, %p, %s, %p , %d , %p \n", pVfs->xOpen, pVfs, zPath, pFile, flags, pFlagsOut); return pVfs->xOpen(pVfs, zPath, pFile, flags, pFlagsOut); } /******************/ Please help
NOTE: the same appplication compiled for linux PC is working fine. If you need more informations. Feel free to ask. Regards Maros _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users