Click here to Skip to main content
15,891,204 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have an MVC application in which i have a screen from that screen user can insert some data in the database table, user can fill the textboxes or there is option to upload the data from excel file also. some other user also can view that data and can update also.
my problem is
Today there is no indication and no way to know whether or not data that is loaded from a excel file is modified by the user letter.
Some kind of system I has to be put in place in order to detect those possible changes and inform users about it.

Please let me know the possible solution.

What I have tried:

.......................................
Posted
Updated 5-Apr-18 21:21pm

1 solution

If i understand you correctly, you've used MS Excel file as a "database". This Excel file is shared between users, who can make some changes through your application...

Forget about Excel in multi user environment! This is not proper "database"! Use MS SQL Server, Oracle, PostgreSql, MySql or any other RDBMS[^], which is more powerful, because provide functionality to detect data changes. For starters, please read:
Using SqlDependency for data change events[^]
Query Notification using SqlDependency and SqlCacheDependency[^]
 
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