This exercise takes you through the steps to use InterSystems IRIS multi-model capability to create a Node.js application that sends JSON data straight to your database instance without any parsing or mapping. If you have not already, we recommend also looking at the Multi-Model Quickstart. We will use Python, JavaScript, and InterSystems ObjectScript to interact with the data from different contexts. First, we will use Python to create our table schema using standard SQL statements. Then, we will modify the underlying ObjectScript class for that table to allow it to receive and persist JSON data directly. Next, we will create a simple Node.js application that will send JSON files to our instance of InterSystems IRIS. Finally, we will query that database using Python again to see how the same data could be accessed in multiple languages from multiple contexts.
-
This exercise requires the 64-bit version of Python 3.
-
If you already have Python installed, make sure to check what bit version you are using by launching the python shell by typing
python
. If the version is 2, try quitting the shell (control-z + enter
on Windows,control-d
on Mac) and typingpython3
. -
Install Python by going here https://www.python.org/downloads/ (be sure to check off 'Add Python to environment variables' in the'Advanced Options' section of the installation.
-
Note: do not click the 'Download Python 3.7.4' button directly on that site as it might download the 32 bit version of python, which will not work with the exercise. Make sure to select the link to your operating system and download the 64 bit Python file.
-
You may need to restart your terminal or even add python to the PATH environment variable if the python command does not work after installing python.
-
-
Begin by downloading this repository to your local machine
git clone https://github.com/intersystems/multi-model-exercise
. -
Open the connections.config file in the top-level directory.
-
Enter the Intersystems IP and Port listed for your intersystem IRIS instance and save. If you are using the InterSystems IRIS Learning Labs instance (which can be found here), you only need to update the ip field to match the ‘external ip’ field found in your lab. If you are using the InterSystems InterSystems IRIS community edition through Docker, you will need to follow a few extra steps:
- Install Docker
- Run
docker run --name my-iris2 -d -p 52773:52773 -p 51773:51773 store/intersystems/iris-community:2019.3.0.302.0
- Navigate to
http://localhost:52773/csp/sys/%25CSP.Portal.Home.zen
and update your password. If necessary, replace 'localhost' with your computer's IP address - Change your password in the connections.config file to the one you chose. Change the port value to
51773
and change the IP to 'localhost' or your computer's IP address.
-
Install and configure python
- Run
cd ./python
- If on a Mac:
- Install homebrew
- Run
brew install unixodbc
- Run
odbcinst -i -d -f pyodbc_wheel/odbcinst.ini
- Run
pip install pip==7.1.2
- Run
pip install --upgrade --global-option=build_ext --global-option="-I/usr/local/include" --global-option="-L/usr/local/lib" --allow-external pyodbc --allow-unverified pyodbc pyodbc
- If on a Windows:
- Run
./pyodbc_wheel/ODBC-2019.1.0.510.0-win_x64.exe
- Run
pip install pyodbc
- If the
pip
command is not recognized, you can also usepy -m pip install
for anypip
installation command.
- If the
- Run
- Run
-
In your preferred IDE or text editor, open
python/createSchema.py
and scroll down to thecreate_employee
function. Below the function declaration, insert the following code:create_employee = """ CREATE TABLE Demo.Employee( ID Integer PRIMARY KEY AUTO_INCREMENT, Name varchar(256), Title varchar(256), Department varchar(50) ) """
As you can see, this is a standard SQL create statement that will generate an Employee table on your InterSystems IRIS instance.
Note: if you are using python 2 or earlier, follow the commented instructions in
createschema.py
in theconnect_to_iris()
function to configure the connection properly. -
Run
python createSchema.py
.- Note: This exercise is configured for Python 3. For some users, you may need to run
python3 createSchema.py
if thepython
command defaults to Python 2.
- Note: This exercise is configured for Python 3. For some users, you may need to run
-
Open the management portal by following the link given to you when you created your instance of the InterSystems IRIS learning labs (or if on the docker container, go to http://localhost:52773/csp/sys/%25CSP.Portal.Home.zen, navigate to System Explorer > SQL and expand the Tables section. Observe that the Demo.Employee table has been created.
-
If you have not installed InterSystems Atelier, follow these instructions. Once downloaded and installed, open Atelier and connect your InterSystems IRIS instance to it.
Atelier allows you to edit InterSystems IRIS classes directly so that you can customize how they behave. When you ran
createSchema.py
earlier, InterSystems IRIS automatically created an ObjectScript class that represents that table. We will need to modify this class to enable it to receive JSON data. -
In the Atelier perspective, navigate to the Server Explorer and select the green 'plus' sign to create a new server. Name it and supply it with the server, port, and login info supplied with your learning lab. Note that you must supply the webserver port (typically 52773) rather than the superserver port you provided for the ODBC connection above. If you are using the learning lab, you can find this information in the “external IDE” url and port.
-
Switch to the Atelier Explorer and create a project in Atelier to store a local copy of your Demo.Employee class so that you can edit it.
-
Next, back in the Server Explorer right click the
Demo.Employee
class, click ‘Copy to Project” and select the project you just created.
-
In the Demo.Employee class and at the top where it says
Extends %Persistent
change it toExtends (%Persistent, %JSON.Adaptor)
. InterSystems ObjectScript is an object-oriented programming language that supports multiple-inheritance. This means that by inheriting the%JSON.Adaptor
class, your table is now automatically able to import JSON data into instances. For more information on the%JSON.Adaptor
class look here. -
Because our table includes an auto-incremented primary key, we need to tell the
JSON.Adaptor
class not to look for that field in incoming JSON files, but to output it as a field when exporting class instances to JSON format. To do this, find the ID property in the Employee class and add(%JSONINCLUDE = "outputonly")
after%Library.AutoIncrement
. -
Before we can run this file, we need to add one small class method to expose the functionality of the
%JSON.Adaptor
class to the Native API (and, by extension, to our Node.js application). Below the Property and Parameter declarations in theDemo.Employee
class, paste the following code.ClassMethod fromJSON(jsonString as %String) As %Status { set employee = ..%New() //create a new class instance do employee.%JSONImport(jsonString) //call the %JSON.Adapter instance method to import JSON string set employee.ID = 0 //this field must be set to 0 for the %Library.AutoIncrement class to increment correctly set status = employee.%Save() //this persists the instance return status }
-
Make sure to recompile the Demo.Employee class by saving it. You have now configured your SQL table class to receive JSON data and automatically create a new record from it.
-
If you do not have Node.js installed locally, download and install it here.
- Note: once Node.js is installed, you may need to restart your terminal in order for it to recognize
node
commands.
- Note: once Node.js is installed, you may need to restart your terminal in order for it to recognize
-
Run
cd ../nodeApp
-
Run
npm install ip
-
Run
npm install --save intersystems-iris-native
. This installs the InterSystems IRIS Native API, which enables you to both access the underlying data structures in your database, and to call ObjectScript class methods directly from your code. -
Open the
app.js
file and navigate down to the linebody = querystring.parse(body)
and paste the following lines below that .//call the classmethod in the Employee class to create and persists a new database record Iris.classMethodValue("Demo.Employee", "fromJSON", JSON.stringify(body))
This code calls a class method using the Native API and passes a JSON string as a parameter. For more information, see Calling ObjectScript Methods and Functions
-
In the terminal, type
node app.js
-
Navigate to the IP address outputted to the terminal. You should see a simple HTML form with inputs for all of the fields in your Demo.Employee table.
-
Enter
JJ Smith
,Software Engineer
, andEngineering
for the three fields and click submit.
-
Quit the Node.js server by pressing
control-c
andcd
back into the Python directory (cd ../python
) -
Run
python query.py
You should see outputted the results of the SQL query, which includes the record you inserted through Node of JJ Smith.
Problem | Likely Solution |
---|---|
When I run python createSchema.py I get a 'Data source name not found' error | You may have the 32 bit version of python installed on your computer instead of the 64 bit. |
When I run createSchema.py I get an error about consistant tabs or spaces | When pasting the create_table statement, make sure that the variable name (create_table ) is declared at the same indentation level as the preceding declarations. |
My node.js app quits unexpectedly when I hit 'submit' | Make sure you hit save in Atelier and that the class compiled successfully. |
I'm on a Windows and the python command is not recognized. |
Be sure to add python to your environment variables. |