记录数据读取器方法调用的最佳方法是什么?

发布于 2024-07-12 06:02:23 字数 1431 浏览 6 评论 0原文

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

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

发布评论

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

评论(3

旧街凉风 2024-07-19 06:02:23

我总是这样做:

int columnIndex = dataReader.GetOrdinal("field");

if (!dataReader.IsDBNull(columnIndex))
    String myString = dataReader.GetString(columnIndex);

当我尝试获取不在读取器中的字段时,GetOrdinal 将失败并出现 IndexOutOfRangeException 。 我想要这个异常,因为它很快告诉我我的代码和数据库之间不匹配。

此外,GetOrdinal 比将序数本身硬编码为幻数要容易得多。

I have always done it this way:

int columnIndex = dataReader.GetOrdinal("field");

if (!dataReader.IsDBNull(columnIndex))
    String myString = dataReader.GetString(columnIndex);

The idea being that GetOrdinal will fail with an IndexOutOfRangeException when I try to get a field that is not in the reader. I want this exception because it tells me quickly that there is a mismatch between my code and my DB.

Also GetOrdinal is much less brittle than hardcoding the ordinal itself as a magic number.

生活了然无味 2024-07-19 06:02:23

我同意 Andrew Hare 的观点,此外,我已将功能封装在一个重载的扩展方法中,从而简化了操作:

public static string GetStringByName(this OracleDataReader reader, 
                                     string columnName, 
                                     string defaultValue)
{
   string result = defaultValue;
   int columnIndex = reader.GetOrdinal(columnName);
   if(!reader.IsDbNull(columnName)
   {
      result = (string) reader.GetString(columnIndex);
   }
   return result;
}

无论如何,只是一次重构,对我帮助很大。

I agree with Andrew Hare, with the addition that I've enclosed the functionality in an overloaded extension method that simplifies the operation:

public static string GetStringByName(this OracleDataReader reader, 
                                     string columnName, 
                                     string defaultValue)
{
   string result = defaultValue;
   int columnIndex = reader.GetOrdinal(columnName);
   if(!reader.IsDbNull(columnName)
   {
      result = (string) reader.GetString(columnIndex);
   }
   return result;
}

Anyway, just a refactoring that helped me tremendously.

流年已逝 2024-07-19 06:02:23

我通常使用选项 3。我喜欢它,因为如果底层查询更改了列顺序,它仍然可以工作,并且它会显示您所要求的内容的名称,而不是一些神奇的数字。

不过,我经常使用 VB.Net,因此 Convert.ToString() 部分可以隐式完成。 C# 类型可能有不同的偏好。

此外,使用字段名称而不是列序号的惩罚非常小。 我通常认为这是合理的,但根据您的应用程序,您可能需要考虑到这一点。

I typically use option 3. I like it because if the underlying query ever changes the column order it will still work, and it shows the name of what you're asking for right there rather than some magic number.

However, I use a lot of VB.Net, so the Convert.ToString() part can be done implicitly. C# types may have a different preference.

Also, there is a very small penalty for using field name rather than a column ordinal. I normally feel it's justified, but depending on your app you might want to take that into account.

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