c# odbc max field length问题
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论