Hello everyone, i'm experiencing a problem accessing a local mobile sqlite database on an android smartphone.
This happening only after enabling performance Boosters (10X Web file compression and Merge files).
If i disable those settings and re-deploy my web application everything working fine again.
I've already configured webserver to accept the transfer of the f* files
this is how i connect to the local sqlite db using sqlca transaction object:
SQLCA.DBMS = "ODBC"
SQLCA.AutoCommit = False
SQLCA.DBParm = "ConnectString='DSN=sqlite_locale;UID=dba;PWD=sql',DelimitIdentifier='Yes';EnabledLocalDB='true'"
connect using sqlca;
If SQLCA.SQLCode <> 0 Then
MessageBox ("Errore di Connessione al Database.", SQLCA.SQLErrText, stopsign!, ok! )
End If
Connection looks successful, since i don't get any error, but everytime i try to access a datastore pointing to sqlca i get an error.
what cound be the cause?
tia and Merry Christmas everyone!