Re: Shared Sqlite database
This is limitation of Symbian application write access, rather than Qt or SQLite.
Re: Shared Sqlite database
I already have the write access capability and certificate. But I found the solution.
The problem was not really the permission but the path to file. Usually in Qt, you should put the path as '/' as Qt replaces it according to the platform. But for the Sqlite driver I had to use '\\' as the Qt for Symbian was not handling it properly.
Re: Shared Sqlite database
If the Qt documentation says that it's wrong. A SQLite DB can be in any valid, accessible directory.
But, as you discovered, SQLite does not play by the rules with regard to file paths. You need to use '\\' instead of '/' and specify the full path.