Reputation: 11
I am new to Mirth COnnect software. Will somebody guide me how can i populate my destination database. I had successfully setup Oracle Database as Source Channel and Mysql as Destination. But in Destination channel beside providing the basic information i failed to understand how to make Mirth do the required task.
Thanks
Upvotes: 1
Views: 611
Reputation: 8757
You're asking a very broad question. It seems like you need a tutorial about Mirth Connect rather than a specific question. I'll try to answer it here anyway.
First review the tutorials for Mirth Connect at the Mirth Connect Wiki. You will not find an exact example for your use case. You need to learn three things: 1. How to read from a DB 1. How to map variables from source messages to map variables 1. How to write to a DB
Review those examples and pick out the ones that cover the three items listed above.
You will need to create a channel that works like this:
SELECT
statement with an optional UPDATE
statement which runs after the data is processed.INSERT
or UPDATE
statements against MySQLchannelMap
variables.Upvotes: 2