I use sqlite library that is compiled by myself. Because I need static library and 64bit library. So I try to make library for version 3.7.10. It was successfully. No error occur on compile time. But It was not work. My SQLite library gave me a error message. My code is fine with 3.7.9. In case of work with memory db (:memory:), it is fine.
What's the problem. How to fix this problem. (I use Visual C++ 2005 on Windows 7 x64) test code ========================== : int rst = sqlite3_open( "e://data.db", &pSQLite3 ); : Error ========================== sqlite3.c 35391 if( isNT() ){ 35392 LPWSTR zTemp; 35393 nByte = osGetFullPathNameW((LPCWSTR)zConverted, 0, 0, 0) + 3; << Error occurred Line 35394 zTemp = sqlite3_malloc( nByte*sizeof(zTemp[0]) ); Error Message ========================== Unhandled exception at 0x00000000 in SQLite3Test.exe: 0xC0000005: Access violation reading location 0x00000000. _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users