how to insert CSV data into database without using FTP adapter ?
Summary
how to insert CSV data into database without using FTP adapter ?Content
I am working on an integration in which I am getting CSV delimited string after decoding base64 string.
Now my next step is to insert this CSV into database without using FTP adapter .
below mentioned is my CSV delimited string-
ID,NAME,AGE1,Sunil,252,Mohan,253,Raj,25
I have also converted this into JSON string using javascript library option in ICS.
provide me the best way to insert this CSV into DB....
1