Python IRIS SQL Procedures Sample
1
1
Initial Release
Samples how to create InterSystems IRIS SQL Stored Procedures using Embedded Python
$ git clone https://github.com/yurimarx/iris-sql-python-sample.git
$ docker-compose build
$ docker-compose up -d
SELECT
ID, City, Name, State, Street, Zip, dc_pythonsql.GetFullAddress(Street, City, State) As FullAddress
FROM dc_pythonsql.Company
SELECT
ID, City, Name, State, Street, Zip, dc_pythonsql.GetHumanDate('yesterday') As Datetime
FROM dc_pythonsql.Company
Initial Release