Database Update: JSON to DB

In this article we will use conn:execute{} to update existing patient records using data from a JSON message.

You can use the same method to copy data from of the different types of node trees and update a database.

These are the steps:

  1. Preparation: Use the From Translator component to import and queue the JSON message data
    • Note: This step is simulated by using sample data
  2. Preparation: Parse the message into a source JSON tree structure
    • Note: Unlike HL7, XML etc a JSON tree structure is a Lua table not a node tree
  3. Update the database

This tutorial only addresses the last step, the preparatory steps have already been completed for you. To run this channel you would need to complete the first step, see the tutorial Reading from files: JSON in this section.

We recommend that you type in the code for each step, but we also include complete Sample Code if you prefer to paste it in and follow along.

Note: The code in this tutorial executes an UPDATE statement for each message that is processed. This means that any new records are effectively ignored, because they don’t exist in the database, so there is no record to update.

To insert new messages you need to use conn:merge() or add logic to check if the record exists and insert it if does not, see the Save to Database: JSON to DB tutorial in the Interface Tutorials sectionl.

Preparation: Create the “test” database [top]

If you do not already have a SQLite database called “test” in the Iguana install directory, then you can create it by following the instructions in the Create a SQLite DB to match your VMD tutorial.

Create the Channel [top]

  1. Create a Channel with the the following settings:
    • Source = From Translator
    • Destination = To Translator
    • Channel name = Update JSON to Database
  2. Click the Add Channel button to create the channel.
    Ignore the red warning messages, see resolving the milestone configuration error.
  3. Open the Translator by clicking the Edit Script link at the bottom of the Destination tab.
  4. Download and import the Update_JSON_to_Database_To_Translator.zip project file.
    This file contains a skeleton project and six sample JSON messages.
  5. Iguana will load the project and data into the Translator, your screen should look like this:

Tutorial Instructions [top]

  1. Pass the message data to the script.
    • Iguana automatically passes the message data to the main() function
    • The message can be accessed using the Data parameter
    • No action is needed
  2. Create a database connection object, using the db.connect{} function.
    Add the following code to your script:
  3. Click on the table object to view the first sample message:
  4. Use the data from the first sample message to hard-code a SQL UPDATE statement.
    Add the following code to your script:

    Note: The double square brackets [[ ]] on lines 18 and 24 are the Lua terminators for a multi-line string.
  5. Insert patient records corresponding to the JSON sample messages.
    1. Paste the following code into your script:
         -- create insert query string
         local SqlInsert =
         [[
         INSERT INTO patient
         (
         Id,
         LastName,
         GivenName,
         Ssn
         )
         VALUES
         (
         ]]..
         "'"..Msg.patients["patient-id"].."',"..
         "\n   '"..Msg.patients["last-name"].."',"..
         "\n   '"..Msg.patients["first-name"].."',"..
         "\n   '"..Msg.patients["social-security-no"].."'"..
         '\n   )'  
         
         -- Insert data into database
         Conn:execute{sql=SqlInsert, live=true}
       
         -- Check that the records were inserted
         Conn:query('SELECT * FROM patient')
    2. Navigate through the sample data to insert the patient records.
      Click next message button on the toolbar five times:

      Ignore any errors that occur (they just indicate that the record already exists):
    3. Comment out the INSERT command:
    4. Click on the SELECT query result to confirm that the messages were added:
    5. Delete the code that you inserted above.
  6. Add the code to update the database:
  7. Test the hard-coded UPDATE query.
    1. Modify SqlUpdate, we changed the surname to “iNTERFACEWARE”:
    2. Add a SELECT query to view the patient data:
    3. Click on the SELECT query result to confirm that the surname was changed:
    4. Change the surname back to “Smith”.
  8. View the hard-coded SQL statement string in the SqlUpdate variable.
    Add a trace() and click the string annotation to view it:
  9. Now we will reproduce the same UPDATE query but replacing the hard-coded VALUES with concatenated data from the JSON message.
    1. Make a second copy the SqlUpdate immediately below the original.
    2. Modify it as shown so the LastName value is copied from the Msg variable (JSON data).
    3. Add a trace() and click the string annotation to view it:

      Note: At this point the database update will cause an error because the query is incomplete, this will disappear after we finish modifying the query.
    4. Reproducing the other fields is just more of the same.
      Modify the code so it looks like this:

      Note
      : The newline (\n) and 3 extra spaces at the start of lines 30 to 33 is only for formatting, so it is easy to compare the strings visually (the query will work equally well if they are removed).
    5. View the query string to confirm that it matches the original query.
      Add a trace() and click the string annotation to view it:
    6. Delete the initial hard-coded SQLUpdate string, and the trace() below it:
  10. Test the code by updating the six sample records in the database.
    1. Modify the sample data.
      • Click the Sample Data link on the toolbar to edit the sample messages:
      • Change data in one or more messages, we changed all the surnames to “iNTERFACEWARE”.
    2. Navigate through the sample data to update the patient records.
      Click next message button on the toolbar five times:
    3. Click on the SELECT query result to confirm that the surname was changed:
  11. Delete all the test code:

    Note: The code in this tutorial executes an UPDATE statement for each message that is processed. This means that any new records are effectively ignored, because they don’t exist in the database, so there is no record to update.

    To insert new messages you need to use conn:merge() or add logic to check if the record exists and insert it if it does not, see the Save to Database: JSON to DB tutorial.

Complete Sample Code [top]

Here is the completed mapping code that you can cut and paste into your script:

function main(Data)
   -- Parse the JSON message
   local Msg = json.parse(Data)  
   
   -- (1) connect to the database
   if not Conn or not Conn:check() then
      Conn = db.connect{
         api=db.SQLITE,
         name='test',
         user='',
         password='',
         live=true
      }
   end
   
   -- (2) create update query string      
   local SqlUpdate =
   "   UPDATE patient SET"..
   "\n   LastName = '"..Msg.patients["last-name"].."',"..
   "\n   GivenName = '"..Msg.patients["first-name"].."',"..
   "\n   Ssn = '"..Msg.patients["social-security-no"].."'"..
   "\n   WHERE Id = '"..Msg.patients["patient-id"].."'"
   
   -- (3) Update database
   Conn:execute{sql=SqlUpdate, live=true}
end

More Information [top]

Leave A Comment?

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.