Just goes to show what a novice I am, I've tried and played with loads of examples but I don't think I'm getting how it all works.
I've tried the jRDC example and edited the config file to;
#DATABASE CONFIGURATION
DriverClass=com.mysql.jdbc.Driver
JdbcUrl=jdbc:mysql://doginthelane.co.uk/DITLlogin?characterEncoding=utf8
User=colin
Password=*********
#Java server port
ServerPort=17178
And when it's run I get
<code>
Waiting for debugger to connect...
Program started.
2020-07-19 13:00:33.473:INFO::main: Logging initialized @546ms to org.eclipse.jetty.util.log.StdErrLog
Jul 19, 2020 1:00:33 PM com.mchange.v2.log.MLog
INFO: MLog clients using java 1.4+ standard logging.
Jul 19, 2020 1:00:33 PM com.mchange.v2.c3p0.C3P0Registry
INFO: Initializing c3p0-0.9.5.2 [built 08-December-2015 22:06:04 -0800; debug? true; trace: 10]
2020-07-19 13:00:34.057:INFO
ejs.Server:main: jetty-9.4.z-SNAPSHOT; built: 2018-05-03T15:56:21.710Z; git: daa59876e6f384329b122929e70a80934569428c; jvm 1.8.0_191-b12
2020-07-19 13:00:34.086:INFO
ejs.session:main: DefaultSessionIdManager workerName=node0
2020-07-19 13:00:34.086:INFO
ejs.session:main: No SessionScavenger set, using defaults
2020-07-19 13:00:34.088:INFO
ejs.session:main: node0 Scavenging every 600000ms
2020-07-19 13:00:34.092:INFO
ejsh.ContextHandler:main: Started o.e.j.s.ServletContextHandler@26a7b76d{/,file:///D:/Downloads/jRDC2/jRDC/Objects/www,AVAILABLE}
2020-07-19 13:00:34.095:INFO
ejs.AbstractNCSARequestLog:main: Opened D:\Downloads\jRDC2\jRDC\Objects\logs\b4j-2020_07_19.request.log
2020-07-19 13:00:34.107:INFO
ejs.AbstractConnector:main: Started ServerConnector@eafc191{HTTP/1.1,[http/1.1]}{0.0.0.0:17178}
2020-07-19 13:00:34.108:INFO
ejs.Server:main: Started @1183ms
Emulated network latency: 100ms
jRDC is running (version = 2.22)
</code>
The table I wish to extract the data from is called 'login'
If the server / api is working how do I extract the information from the table 'login' that contains five fields
Username
telephone
date and time
email address
identifier
And display the information in a table, I'm sure it's possible but I haven't got a clue how to, help!