From b20ad29d63fb025f6e7449553a941cf6f47ef83f Mon Sep 17 00:00:00 2001 From: semanej <32274650+semanej@users.noreply.github.com> Date: Tue, 15 Feb 2022 15:39:27 -0500 Subject: [PATCH 1/2] edit upper right link Made link more explicit --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 93eab99..eb57bf4 100644 --- a/_config.yml +++ b/_config.yml @@ -5,7 +5,7 @@ description: > # this means to ignore newlines until "baseurl:" Download drivers to support your needs. remote_theme: pmarsceill/just-the-docs aux_links: - "View on GitHub": + "Explore all driver versions on GitHub": - "//github.com/intersystems-community/iris-driver-distribution" ## theme: jekyll-theme-minimal From 17e7b967fe20a674e3852953559c0f37acf77742 Mon Sep 17 00:00:00 2001 From: semanej <32274650+semanej@users.noreply.github.com> Date: Tue, 1 Mar 2022 16:57:11 -0500 Subject: [PATCH 2/2] Add github.io page for InterSystems IRIS Add github.io page for InterSystems IRIS --- InterSystems-IRIS.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 InterSystems-IRIS.md diff --git a/InterSystems-IRIS.md b/InterSystems-IRIS.md new file mode 100644 index 0000000..f228f72 --- /dev/null +++ b/InterSystems-IRIS.md @@ -0,0 +1,33 @@ +--- +layout: default +title: InterSystems IRIS +nav_order: 2 +--- + +# iris-driver-distribution +This repo provides drivers for use in making programmatic connections to InterSystems IRIS from Java (JDBC), Python (DB-API), C++ (ODBC), and .NET (ADO.NET). Programming a connection involves these simple steps: + +1. Download the driver for the language you are developing in, as listed in **Drivers**. +2. Follow the instructions in the learning content listed in **Get Started** to install it in your environment. +3. Continue with the instructions to add the appropriate connection string to your application. To do this, you'll need the following information about the InterSystems IRIS instance you want to connect to: +- The hostname or IP address of the instance's host and the superserver port of the instance (default 1972). If the instance is running in a container, you'll need to know what host port the superserver port was published as when the container was created. +- The Namespace you want to connect to. +- The username and password of an account with sufficient privileges to execute the actions you want to take through the connection. + +## Drivers +- JDBC: +**intersystems-jdbc-3.1.0.jar** +- DB-API: +**intersystems_irispython-3.2.0-py3-none-any.whl** +- ADO.NET: +**InterSystems.Data.IRISClient.dll** +- ODBC: +In the **OBDC** folder, select **ODBC-2020.3.0.221.0-**_platform_identifier_, where _platform_identifier_ matches your platform. + +## Get Started +- [Watch brief videos about connecting to IRIS Cloud](https://learning.intersystems.com/course/view.php?name=SQLaaSConnect) +- Read documentation about using drivers and connections strings: + - [First Look: JDBC and InterSystems Databases](https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=AFL_jdbc) + - [Python DB-API Support](https://docs.intersystems.com/iris20221/csp/docbook/DocBook.UI.Page.cls?KEY=BTPI_pyapi) + - [First Look: ADO.NET and InterSystems Products](https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=AFL_adonet) + - [First Look: ODBC and InterSystems Databases](https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=AFL_odbc)