c# odbc max field length问题

发布于 2024-11-15 10:26:26 字数 548 浏览 0 评论 0原文

OdbcConnection cnn = new OdbcConnection(config.connectstrings.odbcmain(_table)); OdbcCommand cmd = new OdbcCommand(sql, cnn);

cnn.Open();

OdbcDataReader dr = cmd.ExecuteReader(CommandBehavior.CloseConnection);

dr.Read();

//this is 240 chars:

Console.WriteLine(dr[0]);

cnn.Close();

还有其他人在使用 dotnet 框架 odbc 提供程序时遇到过这个问题吗?该字段是 240 个字符——我可以使用其他方式正确读取它,因此数据没问题,

当使用此 C# 代码时,它会读取 ~ 前 200 个字符,然后将开始字符注入最后 40 个字符(覆盖最后 40)--

这个示例代码非常简单,我可以去尝试 &找到问题所在——

连接字符串:

DRIVER={ODBC Driver};

OdbcConnection cnn = new OdbcConnection(config.connectstrings.odbcmain(_table)); OdbcCommand cmd = new OdbcCommand(sql, cnn);

cnn.Open();

OdbcDataReader dr = cmd.ExecuteReader(CommandBehavior.CloseConnection);

dr.Read();

//this is 240 chars:

Console.WriteLine(dr[0]);

cnn.Close();

Has anyone else run into this with the dotnet framework odbc provider? The field is 240 chars -- I can read it correctly using other ways, so the data is ok

what happens is when using this c# code is it read ~the first 200 characters, then it injects the beginning chars into the last 40 (overwriting the last 40)--

this sample code is as simple as I could go to try & find the problem--

connection string:

DRIVER={ODBC Driver};

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文