how should the file paths using standard C on Symbian platform be represented?
This question arises from that I use the open source sqlite standard C library in my symbian application, and when I try to open a database using sqlite3_open API, it returns error code = 14, that means " Unable to open the database file"
the API :
the call I do:Code:int sqlite3_open( const char *zFilename, sqlite3 **ppDb )
I get result = 14, unable to open database fileCode:sqlite3 *db = NULL; int result = sqlite3_open("C:\\data\\test.sqlite", &db);
any help?



