MS SQL Server 中的数据限制
我正在使用 asp.net、c# 和 sql sever 2005 运行一个 Web 应用程序。我有一个条件,如果输入带有空白字段的按钮,这些空白数据不应输入到数据库中,但它会为我插入到数据库中。我应该如何避免这种情况?
Am running a web application using asp.net,c# and sql sever 2005.Am having the condition that if if enter the button with blank fields,those blank datas should not entered into the database,but it is getting inserted for me in database.how should i avoid that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的意思是,当没有输入任何字段时,你不输入?
这就是所谓的编程。基本上不是一个 SQL 问题。您的表格应该检查是否应该插入内容。如果不是,它甚至不应该接触 sql server。
You mean, when no fiels are entered, you dont enter?
It is called programming. Basiaclly not a SQL issue to start with. Your form should check whether or not it should make an insert or not. If not it should not even touch sql server.
添加 CHECK 约束
您需要先使用更新+准备你的代码来处理当你尝试插入空字符串时会发生的 SQLExceptions
这个想法也可以使用 NOT NULL 约束扩展到 NULL
Add a CHECK constraint
You'll need to clean up data first with an UPDATE + prepare your code to deal with the SQLExceptions that wil happen when you do try to insert an empty string
This idea can be extended to NULL too with the NOT NULL constraint