You go and you create an app absolutely brilliant app now the rest is up to you. decide what you want the app to look like and just take it from there.
Here are the MySQL subs, they might come in handy for you...
Here are the MySQL subs, they might come in handy for you...
B4X:
#Region MYSQL RESPONSES
Sub MySQL_BatchResult(batch As Map) 'Not tested
Log(batch.Size)
End Sub
Sub MySQL_ExecResult(meta As Map)
Log(meta.Size)
End Sub
Sub MySQL_ListTables(tables As List, ms As Long)
For i = 0 To tables.Size - 1
Log(tables.Get(i))
Next
Log(tables.Size)
End Sub
Sub MySQL_QueryResult(data As List, meta As Map)
ToastMessageShow(meta.Get("RecordCount") & " rows retrieved in " & meta.Get("ms") & " milliseconds", True)
For i = 0 To data.Size - 1
Log(data.Get(i))
Next
Log(data.Size)
Log(meta.Size)
End Sub
Sub MySQL_QueryResult2(data As List, meta As Map)
ToastMessageShow(meta.Get("RecordCount") & " rows retrieved in " & meta.Get("ms") & " milliseconds", True)
For i = 0 To data.Size - 1
Log(data.Get(i))
Next
Log(data.Size)
Log(meta.Size)
End Sub
#End Region