As someone else indicated applications will normally have a configuration page for the driver.
In dBeaver for example when you setup a connection there is a "Driver Settings" button
.png)
Clicking on this will allow you to configure a JDBC driver for connecting. To start you would go to the libraries tab and point at the InterSystems JDBC jar file as shown below. Your path would look something like c:/InterSystemsJDBC/intersystems-jdc-3.2.0.jar (your folder may be different).
Finally on the Settings tab you would indicate the class name and other connection settings
.png)
If you are trying to connect programaticaly you can use whatever library you wish and provide the same type information. Here is an example in Python using the JayDeBe API library.
IRIS_JARFILE = "c:\JDBCdrivers\intersystems-jdbc-3.2.0.jar"
IRIS_DRIVER = "com.intersystems.jdbc.IRISDriver"
JDBC_JARFILES = [IRIS_JARFILE]
# Database settings - this should be in a config file somewhere
# credentials.MyCreds = ["username","password"]
dbConn = jaydebeapi.connect(IRIS_DRIVER,
jdbc:IRIS://10.17.10.84:1972/B360",
credentials.MyCreds, JDBC_JARFILES)- Log in to post comments