1)
Even though you are using a newer driver (8.0.17) for MySQL, you still are using an old DriverClass configuration in your config.properties of the jRDC2 server. So instead of
DriverClass=com.mysql.dbc.Driver
change it to
DriverClass=com.mysql.cj.jdbc.Driver
and that warning message will go away.
2)
res.Columns will not contain the data returned for the jRDC2 server. It is a map of columns and their corresponding position that are returned on a successful query.
3)
What does this mean? At minimum, you should see something like
in the B4A log window when doing a
4)
Dim cmd As DBCommand = CreateCommand("selectAllItem", Null)
How is selectAllItem set up in your config.properties file?
We need this to help you more