Copy InterSystems IRIS JDBC Driver from Docker Container to local filesystem

docker cp my-iris:/usr/irissys/dev/java/lib/1.8/ e:\temp

Files from InterSystems IRIS 2021.2 (preview)

https://hub.docker.com/_/intersystems-iris-data-platform/plans/222f869e-567c-4928-b572-eb6a29706fbd?tab=instructions

https://community.intersystems.com/post/copy-files-between-your-intersystems-docker-instance-and-your-host-jdbc-driver-sample

https://docs.docker.com/engine/reference/commandline/cp/

https://docs.intersystems.com/

InterSystems IRIS and IRIS for Health 2021.2 preview: https://community.intersystems.com/post/intersystems-iris-and-iris-health-20212-preview-published

2021.2 LOAD DATA

LOAD DATA FROM FILE filepath 
    [ COLUMNS (fieldname datatype, 
                          fieldname2 datatype2, ...) ] 
INTO table [ (fieldname, fieldname2, ...) 
    [ VALUES (headeritem,headeritem2, ...) ] ]
    [ USING {json_object} ]

LOAD DATA FROM JDBC connection TABLE jtable
INTO table [ (fieldname, fieldname2, ...) 
    [ VALUES (jfieldname,jfieldname2, ...) ] ]

https://irisdocs.intersystems.com/iris20212/csp/docbook/DocBook.UI.Page.cls?KEY=RSQL_loaddata

Two example repositories using LOAD DATA: