本文介绍了如何保持数据库一致性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我有一个数据库表,其中有一个教授列表,从我的网站用户可以搜索并选择一天的教授。 一旦学生选择了我不想要的教授那个教授要在其他用户的教授名单中,如果那个用户没有确认和这位教授一起去,那么他应该再次显示在列表中。 这是一个例子,我有四位教授P1,P2,P3和P4 所有用户都可以看到所有这些用户现在用户U1选择P2所以其他用户应该看到P1,P3和P4 另外,在下一页上如果用户U1没有确认,那么我必须将P2添加回列表。 如何在asp.net 4.0中实现这一点Sql server 2008 解决方案 I have a database table which has a list of professor, from my website users can search and select a professor for a day.As soon as a student select a professor I don't want that professor to be in the list of professors for other users and if that user doesn't confirm to go with this professor then again he should be displayed in the list.Here is an example, I have four professors P1, P2,P3 and P4All users can see all of themnow a user U1 select P2 so all other users should see P1,P3 and P4Also, on next page if user U1 doesn't confirm then I have to add that P2 back to the list.How can I achieve this in asp.net 4.0 with Sql server 2008 解决方案 这篇关于如何保持数据库一致性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-12 19:28