Overview :
In the previous blog we have learned basics about OIC Connectivity Agent and the steps to install it in a local machine (personal laptop)
Now in this blog we will create an integration to insert records into a database using the installed connectivity Agent.
*Make sure your system is connected with open network.
Prerequisite :
Let's see the steps in detail:
Create Connection :
STEP 1:
Select Oracle Database Adapter in create connection panel.
Create new Schedule Integration having meaningful name and description.
In the previous blog we have learned basics about OIC Connectivity Agent and the steps to install it in a local machine (personal laptop)
Now in this blog we will create an integration to insert records into a database using the installed connectivity Agent.
*Make sure your system is connected with open network.
Prerequisite :
- Oracle database 11g XE(Express Edition)software. Access this blog to download the software and to know the steps to configure it in a local machine (your personal laptop).
- Configure OIC connectivity Agent. ( You can Access this blog to configure it. )
High-Level development Steps :
- Create a connection to connect with oracle database.
- Create a scheduled integration.
- select the above database connection and configured it by selecting the operation name and table name.
- Hardcode one message which you want to insert in database.
- Run the integration & submit it.
- Open the SQL developer & verify the record get inserted into the database.
Let's see the steps in detail:
Create Connection :
STEP 1:
Select Oracle Database Adapter in create connection panel.
Enter Connection Name & click Ok.
Now configure the connection properties by adding local database connection details which we configured in the previous blog.
*Host : localhost
*Port : 1522
SID : xe
Click Ok.
Now add the local database credentials and then click Ok.
*Username : SYSTEM
*Password : enter the local database password
Create Integration :
STEP 1:Create new Schedule Integration having meaningful name and description.
select table "TEST_AGENT" which we have created in previous blog
Click Import Tables
Select & declare primary key. Click Ok
Click Next.
Click Done.
STEP 3:
Click to Edit the mapper
Right Click 'message' tag and click "Create Target Node"
Hard code any message (ex: "Agent007") & then click Validate and Close.
STEP 4:
Enable the Tracker
STEP 5:
Save and Close the Integration.
Activate integration and Submit it.
STEP 6:
Open SQL developer and run the select query , you can see the message get inserted into your localhost database successfully.
Done.
Click Import Tables
Select & declare primary key. Click Ok
Click Next.
Click Done.
STEP 3:
Click to Edit the mapper
Right Click 'message' tag and click "Create Target Node"
Hard code any message (ex: "Agent007") & then click Validate and Close.
STEP 4:
Enable the Tracker
STEP 5:
Save and Close the Integration.
STEP 6:
Open SQL developer and run the select query , you can see the message get inserted into your localhost database successfully.
Done.