Hi there
Following on the BANano Essentials Ebook, my BrowserIndex and ServerIndex code has been updated to use ws.B4JSend.
For example, in my BrowserIndex, I have
and inside the ServerIndex.DirectMySQLOnServer_BAN sub, I am calling db related functions.
For example..
My code is working very well, however I just need to confirm if what Im doing is not abnormal and might cause unexpected bahaviour.
Thanks in advance.
Following on the BANano Essentials Ebook, my BrowserIndex and ServerIndex code has been updated to use ws.B4JSend.
For example, in my BrowserIndex, I have
B4X:
...
ws.B4JSend("DirectMySQLOnServer_BAN", payload)
...
and inside the ServerIndex.DirectMySQLOnServer_BAN sub, I am calling db related functions.
For example..
B4X:
...
Dim doit As ResumableSub = dDB.SQLRunQuery(query, args)
Wait For(doit) Complete (Result As Boolean)
...
My code is working very well, however I just need to confirm if what Im doing is not abnormal and might cause unexpected bahaviour.
Thanks in advance.