https://github.com/davealdon/intersystems-jdbc
How to connect to an Interstems Caché database table in a namespace using a JDBC connection
https://github.com/davealdon/intersystems-jdbc
cache-objectscript intersystems intersystems-cache intersystems-samples jdbc jdbc-connector jdbc-database
Last synced: about 2 months ago
JSON representation
How to connect to an Interstems Caché database table in a namespace using a JDBC connection
- Host: GitHub
- URL: https://github.com/davealdon/intersystems-jdbc
- Owner: DaveAldon
- Created: 2019-03-16T05:32:59.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-16T05:42:08.000Z (about 6 years ago)
- Last Synced: 2025-03-26T06:06:35.739Z (about 2 months ago)
- Topics: cache-objectscript, intersystems, intersystems-cache, intersystems-samples, jdbc, jdbc-connector, jdbc-database
- Language: Java
- Size: 380 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Intersystems-JDBC
How to connect to an Interstems Caché database table in a namespace using a JDBC connection## Requirements
* A Caché server with user rights for the namespace and table you want
* Java 1.8+ (if using something older, you'll need modifications)
* The Intersystems JDBC library (the 2.0.0 version is included in this repo)## Class Dependancies
```Java
import java.sql.*;
import com.intersys.jdbc.*;
```