There is an application that I only can Update the configuration of this app ( not the code)
This system is using org.hsqldb.jdbcDriver to connect to database scrip in a file like the script below
SET DATABASE UNIQUE NAME HSQLDB3C9CFAE07A
SET DATABASE GC 0
...
CREATE MEMORY TABLE Table1(Field1 BIGINT,Field2 BIGINT,Field3 BIGINT,Field4 VARCHAR(255),Field5 VARCHAR(48))
CREATE MEMORY TABLE Table2(Field1 BIGINT,Field2 BIGINT,Field3 BIGINT,Field4 VARCHAR(255),Field5 VARCHAR(48))
...
INSERT INTO Table1 VALUES(1,10,100,'One','Ten')
INSERT INTO Table1 VALUES(2,20,200,'Two','Twinty')
INSERT INTO Table1 VALUES(3,30,300,'Three','Thirty')
INSERT INTO Table2 VALUES(4,40,400,'Four','Foury')
INSERT INTO Table2 VALUES(5,50,500,'Five','Fifty')
INSERT INTO Table2 VALUES(6,60,600,'Six','Sixty')
I took this script, modified it a little and put it in SQL Server database.
I am trying to change the config file so it can access data in SQL Server instead of the script file
here is what the config file look like
<property key="jdbcDriver" value="org.hsqldb.jdbcDriver"/>
<property key="jdbcUrl" value="jdbc:hsqldb:file:mydata/data/data.script"/>
<property key="jdbcUser" value="sa"/>
<property key="jdbcPass" value=""/>
What shall I put in the jdbcUrl to connect to SQL Server?