T-SQL 中的位类型

发布于 2024-11-28 04:43:41 字数 306 浏览 0 评论 0原文

在我的表中,我使用 IsTrue 列的位类型。

当我执行 select 命令时:

SqlDataReader reader = command.ExecuteReader(); 

我不确定 reader["isTrue"] 会返回什么?

我尝试进行比较

reader["isTrue"].ToString().Equals("0")

,但效果不佳。有人可以告诉我我做错了什么吗?

In my table, I use the bit type for IsTrue column.

When I execute the select command:

SqlDataReader reader = command.ExecuteReader(); 

I'm not sure that what would the reader["isTrue"] return ?

I tried doing the comparison

reader["isTrue"].ToString().Equals("0")

but it didn't work well. Can somebody tell me what I did incorrectly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

飘然心甜 2024-12-05 04:43:41

它返回一个布尔值。

bool value = (bool)reader["IsTrue"];

如果您知道结果集中列的索引,则可以使用:

bool value = reader.GetBoolean(index);

It returns a boolean value.

bool value = (bool)reader["IsTrue"];

If you know the index of the column in the result set, you can use:

bool value = reader.GetBoolean(index);
辞旧 2024-12-05 04:43:41

我喜欢使用扩展方法来执行此操作:

public static bool ToBool(this string theString)
    {
        bool result = false;
        bool.TryParse(theString, out result);
        return result;

    }

在您的代码中,您可以简单地执行此操作:

if(reader["isTrue"].ToBool())
{
}

ToBool 扩展方法将在以下情况下返回 true/false:

  • false if reader["isTrue"] 返回 DBNull.Value
  • false if reader[" isTrue"]
  • 如果 reader["istrue"] 返回 1(作为位)则返回 0(作为位)true

并且当您执行它时它永远不会抛出异常,除非结果集中不存在“isTrue”列,显然。

I like to do this with extension methods:

public static bool ToBool(this string theString)
    {
        bool result = false;
        bool.TryParse(theString, out result);
        return result;

    }

And in your code you can simply do this:

if(reader["isTrue"].ToBool())
{
}

The ToBool extension method will return true/false in the following cases:

  • false if reader["isTrue"] returns DBNull.Value
  • false if reader["isTrue"] returns 0 (as bit)
  • true if reader["istrue"] returns 1 (as bit)

And it will never throw an exception when you execute it unless the "isTrue" column is not present in your result set, obviously.

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