Add GitHub page for IRIS cloud
* added _config.yml and index.md for publishing to GitHub page. Used for InterSystems IRIS Cloud
This commit is contained in:
parent
3527cfb28c
commit
db67328895
|
@ -0,0 +1,16 @@
|
||||||
|
title: Drivers
|
||||||
|
author: Jenny Ames
|
||||||
|
email: jennifer.ames@intersystems.com
|
||||||
|
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":
|
||||||
|
- "//github.com/intersystems-community/iris-driver-distribution"
|
||||||
|
## theme: jekyll-theme-minimal
|
||||||
|
|
||||||
|
# social links
|
||||||
|
twitter_username: intersystems # DO NOT include the @ character, or else the build will fail!
|
||||||
|
github_username: your-github-handle # DO NOT include the @ character, or else the build will fail!
|
||||||
|
|
||||||
|
show_excerpts: true # set to false to remove excerpts on the homepage
|
|
@ -0,0 +1,43 @@
|
||||||
|
---
|
||||||
|
title: "Welcome"
|
||||||
|
---
|
||||||
|
|
||||||
|
This page provides drivers for use in making programmatic connections to IRIS Cloud 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 following the instructions to add the appropriate connection string to your application, using the connection information for your deployment. This information is displayed on the Deployment Details page in the Cloud Services Portal and includes:
|
||||||
|
- Hostname and port
|
||||||
|
- Namespace
|
||||||
|
- IRIS username
|
||||||
|
- The IRIS password you set when you created the deployment (not displayed for security)
|
||||||
|
|
||||||
|
## 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.
|
||||||
|
|
||||||
|
|
||||||
|
## Drivers
|
||||||
|
<button class="btn" onclick="document.getElementById('java').click()">Java</button>
|
||||||
|
<a id="java" href="https://github.com/intersystems-community/iris-driver-distribution/blob/main/intersystems-jdbc-3.1.0.jar?raw=true" download="test.txt" target="_blank" hidden></a>
|
||||||
|
<button class="btn" onclick="document.getElementById('dotnet').click()">.NET</button>
|
||||||
|
<a id="dotnet" href="https://semanej.github.io/github-pages-with-jekyll/test.txt" download="test.txt" target="_blank" hidden></a>
|
||||||
|
<button class="btn" onclick="document.getElementById('python').click()">Python</button>
|
||||||
|
<a id="python" href="https://semanej.github.io/github-pages-with-jekyll/test.txt" download="test.txt" target="_blank" hidden></a>
|
||||||
|
<button class="btn" onclick="document.getElementById('Cplusplus').click()">C++</button>
|
||||||
|
<a id="Cplusplus" href="https://semanej.github.io/github-pages-with-jekyll/test.txt" download="test.txt" target="_blank" hidden></a>
|
||||||
|
|
||||||
|
|
||||||
|
## 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)
|
Loading…
Reference in New Issue