如果单元格包含 vb.net 中的空值,如何更改 datagidview 单元格的值

发布于 2024-12-11 11:15:08 字数 87 浏览 0 评论 0原文

如果 SQL Server 数据库中的列包含 null dbnull 值,那么当我在 datagridview 中查看数据库表时,如何将其替换为“N/A”字符串

If a column contains null dbnull value in sql server database then how can i replace it with "N/A" string when i view the database table in datagridview

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

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

发布评论

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

评论(2

寄居者 2024-12-18 11:15:08
myDataGridView.DefaultCellStyle.NullValue = "N/A"
myDataGridView.DefaultCellStyle.NullValue = "N/A"
蘑菇王子 2024-12-18 11:15:08

假设列是字符类型而不是数字,您始终可以更改填充 SELECT 的 SQL 并使用:

ISNULL(col1,'N/A')

另一种选择就是这样做:

DataSet.BindingSource.DataSource.Columns(<columnName>).DefaultValue = <value>

Assuming the column is a character type and not numeric, you could always alter the SQL that populates the SELECT and use:

ISNULL(col1,'N/A')

Another option is to do this:

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