Spanish SQLCipher (Not a error)

dhernandez

Active Member
Licensed User
Longtime User
Buenos días a todos, de nuevo con una batalla y dolor de cabeza, uso SQLCipher, trato de ejecutar una actualización mediante RDC a mi tablas locales(Móvil). Me sale el siguiente mensaje de error, busque en el foro y me vi que es con la instalación/configuración de SQLCipher, Lo hice segun el tutorial y el error persiste, no me deja avanzar.

Aquí el código de error:

B4X:
net.sqlcipher.database.SQLiteException: not an error

** Activity (main) Create, isFirst = true **

** Activity (main) Resume **

** Activity (main) Pause, UserClosed = true **

** Activity (actualizar_det) Create, isFirst = true **

** Activity (actualizar_det) Resume **

startService: class anywheresoftware.b4a.samples.httputils2.httputils2service

** Service (httputils2service) Create **

** Service (httputils2service) Start **

actualizar_det_jobdone (B4A line: 26)

If SQL1.IsInitialized=False Then SQL1.Initialize(ruta, "am14dbishe.db", True, "Asdfg1234",ruta)
net.sqlcipher.database.SQLiteException: not an error
    at net.sqlcipher.database.SQLiteDatabase.dbopen(Native Method)
    at net.sqlcipher.database.SQLiteDatabase.<init>(SQLiteDatabase.java:1951)
    at net.sqlcipher.database.SQLiteDatabase.openDatabase(SQLiteDatabase.java:901)
    at net.sqlcipher.database.SQLiteDatabase.openDatabase(SQLiteDatabase.java:948)
    at anyhwheresoftware.b4a.objects.sqlcipher.SQLCipher.Initialize(SQLCipher.java:51)
    at b4a.example.actualizar_det._jobdone(actualizar_det.java:345)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:525)
    at anywheresoftware.b4a.BA.raiseEvent2(BA.java:169)
    at anywheresoftware.b4a.keywords.Common$4.run(Common.java:930)
    at android.os.Handler.handleCallback(Handler.java:730)
    at android.os.Handler.dispatchMessage(Handler.java:92)
    at android.os.Looper.loop(Looper.java:137)
    at android.app.ActivityThread.main(ActivityThread.java:5103)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:525)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
    at dalvik.system.NativeStart.main(Native Method)
 
Top