Hello,
I am playing around with the jserver example. I can successfully reach the server on 127.0.0.1 , I set up a connection pool to mysql server with this :
I want to write the results to page with req.write but I can't even log the results. no errors are returned from the execnonquery but how do i print the results ?
Thanks
I am playing around with the jserver example. I can successfully reach the server on 127.0.0.1 , I set up a connection pool to mysql server with this :
B4X:
pool.Initialize("com.mysql.jdbc.Driver", "jdbc:mysql://localhost:3306/dbname?autoReconnect=true&useSSL=false", _
"root", "xxx")
pool.GetConnection.ExecNonQuery("SELECT * from tblson")
I want to write the results to page with req.write but I can't even log the results. no errors are returned from the execnonquery but how do i print the results ?
Thanks