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

RandomCoder

Well-Known Member
Licensed User
Longtime User
The link will be sure to follow soon, just bare in mind that we're all in different time zones. Manfred may have decided to have an early night
 

jahswant

Well-Known Member
Licensed User
Longtime User
Can you share with us your NorthWind B4A Project..?
Edited : Saw it
Not having it working...
Can you share with us your NorthWind B4A Project..?
 
Last edited:

benji

Active Member
Licensed User
Longtime User
how i know if the executebatch is ok or wrong?

i try to use this
B4X:
Sub MySQL_BatchResult(batch As Map)
    Log(batch)
End Sub

but i have this error "java.lang.Exception: Sub mysql_batchresult signature does not match expected signature."

any help is appreciated, thanks in advance.
 

DonManfred

Expert
Licensed User
Longtime User
The signature has changed:
Use this please
B4X:
Sub MySQL_BatchResult(data As List, meta As Map)
    'Log("MySQL_BatchResult()")
    'Log("Time: "&meta.Get("ms")&"ms")
    'Log("Size: "&meta.Get("size"))
    'For i=0 To data.Size-1
        'Log(i&"="&data.Get(i))
    'Next   
End Sub
 

benji

Active Member
Licensed User
Longtime User


works perfectly, thanks.
 

tango

Active Member
Licensed User
Longtime User
    • The library is not free. You need to donate as low as 5$ to get the library.
[/QUOTE]

Hi DonManfred ,
i paid price and how can i get library?
 

RandomCoder

Well-Known Member
Licensed User
Longtime User
Manfred will send it as soon as he's next online (not long normally), the system is not automatic he has to send it personally.
 

DonManfred

Expert
Licensed User
Longtime User
Manfred will send it as soon as he's next online (not long normally), the system is not automatic he has to send it personally.
i got a registration this night at 1am. I send the mail one hour ago.

I got another registration today at 12am and send the mail at 12:12

If there are any missing registration then it seems i´m missing a mail from PayPal.

Anyway; it is hard to check without knowing a name, a email
 

tango

Active Member
Licensed User
Longtime User
hi DonMafred,
i examine that check_connection2 stops app until connection is ok. if connection is ok then it gives "true", but if i cut connection, it waits antil connection came back and during this times it stops app. how can can i control if no connection in small time
 

Peter Simpson

Expert
Licensed User
Longtime User
@tango try this, but I don't know. I'm probably reading your question incorrectly...
B4X:
'Maybe something like this in Activity_Resume will help, but I'm just guessing as I don't have the same issue as you are having.
Sub Activity_Resume
    MySQLExe.check_connection
    MySQLExe.QueryASync2(....)
End Sub

Sub Activity_Pause (UserClosed As Boolean)
    MySQLExe.CloseDatabase
End Sub
 
Last edited:
Cookies are required to use this site. You must accept them to continue using the site. Learn more…