开发者

Is there a way in either sql or web developer to all deleting say from a gridview all but the last row?

开发者 https://www.devze.com 2023-04-08 04:59 出处:网络
I have a web port开发者_Go百科al set up where customers can add company contacts, etc to a sql database thru gridviews and detail views i created with microsoft Web Developer.I need to have it set up,

I have a web port开发者_Go百科al set up where customers can add company contacts, etc to a sql database thru gridviews and detail views i created with microsoft Web Developer. I need to have it set up, where although customers that have rights can edit and delete contact records, they cannot delete the last one. There must be one left in the system. I know this sounds like a strange request, but it is a needed one. Is this something that can be done thru VB, SQL, or thru one of web developers objects such as the Details View?

Thank you!


Not a strange request, as I understand the need. The solution we employed is the actual default Admin account did not show up on the delete list, as it was "system generated". That may not be a retooling you can do.

What you can't do is use the automagic drag and drop crap and institute this type of functionality. You will have to either pair down the request to remove the last requested item, write a trigger on the database or write custom code to not delte the last item.

As an example of pairing down: with datasets, since they are disconnected, you can remove the last row prior to sending your delete request. With LINQ and EF, you have similar options to shaping the return data.

Then, if you desire to explicitly control your code (good), you can roll through the items and ensure the last one does not delete.

If you want to make this as "safe" as possible, you might consider a trigger on the table that checks if the delete is last administrator user for a particular organization and abort if so. Then the user might say "delete all" on the web, but the database protects them.

0

精彩评论

暂无评论...
验证码 换一张
取 消