简体   繁体   中英

How to insert data in oracle database using stored procedure in c#?

I have a below table in my oracle database. I wanat to insert these data using stored procedure and call it in my c# code.. can anyone help me on this?

CREATE TABLE TRANSFORMATION_LOG(    
    row_num number,
    source_file_path varchar(2000),
    transformed_file_path varchar(2000),
    transformed_status varchar(10),
    transformed_message varchar(1024),
    transformed_datetime TIMESTAMP    
)

阅读这些文章,然后按照步骤.... 12

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM