C# SQL Data Adapter System.Data.StrongTypingException(C# SQL 数据适配器 System.Data.StrongTypingException)
问题描述
我通过填充将数据从 SQL 获取到数据集.它只是一个包含两列(CategoryId (int) 和 CategoryName (varchar))的表.
I get my data from SQL to Dataset with Fill. It's just one table with two columns (CategoryId (int) and CategoryName (varchar)).
当我在填充方法后查看我的数据集时,CategoryId 列似乎是正确的.但在 CategoryName 我有一个 System.Data.StrongTypingException.
When I look at my dataset after fill method, CategoryId Columns seems to be correct. But in the CategoryName I have a System.Data.StrongTypingException.
这意味着什么?
有什么想法吗?
推荐答案
当你获取类型化数据集中的行/列的值时,默认情况下,当值为 DBNull 时会引发此异常.所以
When you get the value of a row/column in a typed dataset, by default it raises this exception when the value is DBNull. So
string x = Row.CategoryName;//Raises this exception when CategoryName is null.
您可以使用类型化数据集设计器更正此问题.
将 CategroyName 列的属性Nullvalue"设置为(Empty)"
You can correct this with the typed dataset designer.
Set the property "Nullvalue" of the CategroyName column to "(Empty)"
这篇关于C# SQL 数据适配器 System.Data.StrongTypingException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C# SQL 数据适配器 System.Data.StrongTypingException


基础教程推荐
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01