cancel
Showing results for 
Search instead for 
Did you mean: 

Fetching data from JDBC without using JDBC sender adapter

Former Member
0 Kudos

Hi all,

My requirement is fetching the data from more than one database table and sending it through XI.

But as per my study using JDBC sender adapter we can only work with one SQL statement, with which I think I can't access more than one table.

I have found one way, that is using Java Proxies. But in this approach, I need to place a java application system into which I need to get data from JDBC tables and then I can start sending data to XI through Java Proxies.

So experts please let me know the possible ways to achieve it.

Thank you.

Regards

Bhanu Tiruveedula.

Accepted Solutions (1)

Accepted Solutions (1)

Shabarish_Nair
Active Contributor
0 Kudos

My requirement is fetching the data from more than one database table and sending it through XI.

But as per my study using JDBC sender adapter we can only work with one SQL statement, with which I think I can't access more than one table.

you can always write a stored procedure which will fetch data from multiple tables and then send to XI.

use JDBC itself

Answers (3)

Answers (3)

Former Member
0 Kudos

Thanks

chitti_prakash
Employee
Employee
0 Kudos

Hi Bhanu,

Here you can also use JOINS or UNIONS to access the data from mutliple tables from the DB.

Cheers,

Soorya

GabrielSagaya
Active Contributor
0 Kudos

Hi

You can opt Stored procedure.

But Check prasad's reply