ODBC 数据传输到 SQL Server
ODBC 驱动程序如何在应用程序与 MSSQL Server 2005 之间传输数据?
是连载的吗?
我正在尝试在 SQL Server 2005 和 SQL Server 2005 之间发送数据。 MS Dynamics 4.0,但我怀疑我的数据被中间的 ODBC 驱动程序更改了。
How does the ODBC driver transfer data between an application to MSSQL Server 2005?
Is it serialized?
I'm trying to send data between SQL Server 2005 & MS Dynamics 4.0 but I suspect my data is altered by the ODBC driver in between.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它作为宽字符串发送到 SQL 服务器——即 SQL 查询批处理。无需进行任何转换。返回数据采用称为 TDS 的协议进行构造。
我相信如果您使用 ODBC 本机客户端的 ASCII 函数,它会被升级为宽字符。
Its sent as a wide-character string to SQL server -- i.e., a SQL query batch. No transformation needs to take place. The return data is structured in a protocol called TDS.
I believe if you are using the ASCII functions of the ODBC native client it gets upscalled to wide-character.
查看两台服务器上的日期格式,您可能遇到本地化/区域设置问题
Look at the date formats on the 2 servers, you may have issues with localisation/regional settings