MS SQL Server 中的数据限制

发布于 2024-10-29 02:00:58 字数 117 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

走过海棠暮 2024-11-05 02:00:59

我的条件是如果如果
输入空白按钮
字段,那些空白数据不应该
录入数据库

你的意思是,当没有输入任何字段时,你不输入?

我应该如何避免这种情况?

这就是所谓的编程。基本上不是一个 SQL 问题。您的表格应该检查是否应该插入内容。如果不是,它甚至不应该接触 sql server。

Am having the condition that if if
enter the button with blank
fields,those blank datas should not
entered into the database

You mean, when no fiels are entered, you dont enter?

how should i avoid that?

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.

旧夏天 2024-11-05 02:00:59

添加 CHECK 约束

ALTER TABLE Mytable WITH CHECK ADD
    CONSTRAINT CK_Mytable_MyColumn CHECK (MyColumn <> '')

您需要先使用更新+准备你的代码来处理当你尝试插入空字符串时会发生的 SQLExceptions

这个想法也可以使用 NOT NULL 约束扩展到 NULL

Add a CHECK constraint

ALTER TABLE Mytable WITH CHECK ADD
    CONSTRAINT CK_Mytable_MyColumn CHECK (MyColumn <> '')

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文