Hi, I know there is a tutorial regarding how to run properly the rdc example. But I feel I'm getting no where..kindly help me out. I know it's simple but I guess not for me.
1. My target is to connect to MySql.
This is what I have in the config.propoerties.
When I right click and run as administrator the RunRLC I have the following output.
But when I try to open status connection in a browser by entering http://127.0.0.1:17178/?method=test I have this result...
and I'm not sure what this error mean
Thank you for the time.
1. My target is to connect to MySql.
B4X:
DriverClass=com.mysql.jdbc.Driver
JdbcUrl=jdbc:mysql://192.168.1.100/test?characterEncoding=utf8
#SQL Server
#DriverClass=net.sourceforge.jtds.jdbc.Driver
#JdbcUrl=jdbc:jtds:sqlserver://<database server ip>/<database>
User=root
Password=""
ServerPort=17178
#If Debug is true then this file will be reloaded on every query.
#This is useful if you need to modify the queries.
Debug=true
#commands
sql.create_table=CREATE TABLE animals (\
id INT NOT NULL AUTO_INCREMENT,\
name CHAR(30) NOT NULL,\
image BLOB,\
PRIMARY KEY (id))
sql.insert_animal=INSERT INTO animals VALUES (null, ?,?)
sql.select_animal=SELECT name, image FROM animals WHERE name = ?
When I right click and run as administrator the RunRLC I have the following output.
But when I try to open status connection in a browser by entering http://127.0.0.1:17178/?method=test I have this result...
and I'm not sure what this error mean
Thank you for the time.