[chargeable] MSMySQL - Yet another MySQL-Library (but a FAST one :-))

shashkiranr

Active Member
Licensed User
Longtime User
Hi Don,

I am getting signature error while executing batch async query. The values are getting updated in the table.

B4X:
java.lang.Exception: Sub mysql_batchresult signature does not match expected signature.

the sub is
B4X:
Sub MySQL_BatchResult(batch As Map)
    Log(batch)
End Sub

Regards,
SK
 

DonManfred

Expert
Licensed User
Longtime User
I am getting signature error while executing batch async query.
Download new versions from the download link you got after registration. Should be fixed
 

adastra

Member
Licensed User
Longtime User
hi i have your library msmysql is is working in debug mode but does not work in release mode.i do't not why please help
 

samperizal

Active Member
Licensed User
Longtime User
greetings

mysql to connect to the following error occurs

:null,0
java.lang.ClassNotFoundException: de$donmanfred$b4a$MySQL
at anywheresoftware.b4a.shell.Shell.getCorrectClassName(Shell.java:544)
at anywheresoftware.b4a.shell.Shell.createObject(Shell.java:516)
at anywheresoftware.b4a.shell.Shell.raiseEventImpl(Shell.java:320)
at anywheresoftware.b4a.shell.Shell.raiseEvent(Shell.java:238)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at anywheresoftware.b4a.ShellBA.raiseEvent2(ShellBA.java:121)
at b4a.example.main.initializeGlobals(main.java:306)
at b4a.example.main.afterFirstLayout(main.java:97)
at b4a.example.main.access$100(main.java:17)
at b4a.example.main$WaitForLayout.run(main.java:78)
at android.os.Handler.handleCallback(Handler.java:587)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:4627)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
at dalvik.system.NativeStart.main(Native Method)

ver lib is MSMYSQL 0.36

As I fix


Thank You
 

shashkiranr

Active Member
Licensed User
Longtime User
Hi Don,

When there is slow internet connection, the db initialization does not happen fast and blocks the main thread. Even when I put the initialization in a service module to run in background it still blocks the main UI thread. Is there a way in which I can initialize the db in the background ?

Regards,
SK
 

jahswant

Well-Known Member
Licensed User
Longtime User
If your internet speed is slow you won't enjoy this lib
 
Last edited:
Top