Hi, I've got some strange problems using a sqlite dabatase on my nokia N78.

I add my sqlite db on my .pro file in this way:
Qt Code:
  1. # Add files and directories to ship with the application
  2. # by adapting the examples below.
  3. # file1.source = myfile
  4. # dir1.source = mydir
  5. file.source = sms.sqlite
  6. file.path = C:/workspace/SMSArchive
  7. DEPLOYMENTFOLDERS += file
  8.  
  9. symbian:TARGET.UID3 = 0xE37DE095
  10.  
  11. # Allow network access on Symbian
  12. #symbian:TARGET.CAPABILITY += NetworkServices
  13.  
  14. # If your application uses the Qt Mobility libraries, uncomment
  15. # the following lines and add the respective components to the
  16. # MOBILITY variable.
  17. # CONFIG += mobility
  18. # MOBILITY +=
  19.  
  20. QT += sql
  21.  
  22. #SOURCES, HEADERS are OK!
  23.  
  24. # Please do not modify the following two lines. Required for deployment.
  25. include(deployment.pri)
  26. qtcAddDeployment()
To copy to clipboard, switch view to plain text mode 

Then if I try to install my program on the phone memory I can query my data correctly, but if I install it on the external memory card it doesn't work!