Click here to Skip to main content
15,885,985 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Hi
I have the following requirements:

Read selected columns(DetailsId, SentDate, Count) from excel, get data for the respective DetailsId(s) from Oracle database. Show the comparison data from the excel and database in a grid (MVC).

If the data matches do nothing, if there is a mismatch update some database columns with data in the excel.


Any suggestions how this can be done

Thanks
Posted

1 solution

Create a .NET project to:

1) Extract your data from the excel file into a DataSet,
2) Connect to oracle database and write a SQL-script to extract the data using DetailsId,
3) Show the result(s) in a (data)gridview,
4) If action is needed, update the database with SQL-script.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900