Keep up with latest product news
targetPropertyDataType
equals to %DeepSee.Time.DayMonthYear
3.1.84
Multidimensional Property access from Python:
Expands the scope of tuple returned to Python when invoking IRIS methods from Embedded Python.
In addition to receiving IRIS method output parameters this update adds support for:
Support of environment variables and initial scripts is introduced.
added support for environment variables to set username, password and namespace
if set IRIS_USERNAME
and user does not exists it will create, by default _SYSTEM
user is used
if set IRIS_PASSWORD
it will set password for IRIS_USERNAME
or for _SYSTEM
by default
if set IRIS_NAMESPACE
it will create the namespace, default is USER
Support of initialization scripts is introduced.
mount folder with scripts to /docker-entrypoint-initdb.d/
expected extensions sql
, sql.gz
and sh
sh file may contain shebang like this, will be executed in IRIS_NAMESPACE
#!/usr/bin/env iriscli
write !,"Hello"
zpm "install dsw"
sql file, will be executed in Python Embedded mode by irissqlcli
docker run -it \
-p 9090:52773
-e IRIS_PASSWORD=demo \
-e IRIS_USERNAME=demo \
-e IRIS_NAMESPACE=demo \
intersystemsdc/iris-community:latest
Will start IRIS with already defined user demo
with password demo
, and created namespace DEMO
Supports Docker secrets, too
Now supports JSON messages representation using json-trace package by Guillame Rongier
embed=1
(#361)setFilter
, setRowSpec
actions (#281)sourceURL
generation for addon files loaded at runtime for better access using dev tools