Let me focus on the last two items in your list. IRIS Native for Java, Node.js, DotNet, Python - these are all consistent implementations of the IRIS Native API and the communication is over TCP or shared memory. IRIS Native for ObjectScript is just another - consistent - implementation of the IRIS Native API.
To get a connection to an IRIS server, the command is similar across all implementations of IRIS Native API:
set connection = ##class(%Net.DB.DataSource).CreateConnection(host, port, namespace, user, pwd)Once you have a connection, you can get an IRIS object.
set iris = connection.CreateIris()and from an iris object, you can invoke class methods, code implemented in routines, set/get globals, and so on.
- Log in to post comments

