作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试连接到 postgres 数据库并提取一个 box 数据类型并将其解析为 NpgsqlBox。
我希望有一个构造函数,例如:
new NpgsqlBox(reader.GetString(0));
但是找不到任何东西。我可以手动拆分字符串并使用另一个构造函数:
new NpgsqlBox(getUpperRight(reader.GetString(0)), getLowerLeft(reader.GetString(0)));
虽然我希望有一个更好的解决方案。
如有任何帮助,我们将不胜感激。
谢谢
最佳答案
我很确定对于任何非标准数据类型,您都可以简单地使用 GetValue
然后将其转换为正确的数据类型:
NpgsqlCommand cmd = new NpgsqlCommand("select * from my_box", conn);
NpgsqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
NpgsqlBox b = (NpgsqlBox)reader.GetValue(0);
}
reader.Close();
关于c# - 将 postgres box 转换为 .Net NpgsqlBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35076146/
我正在尝试连接到 postgres 数据库并提取一个 box 数据类型并将其解析为 NpgsqlBox。 我希望有一个构造函数,例如: new NpgsqlBox(reader.GetStri
我是一名优秀的程序员,十分优秀!