是否有 Microsoft SQL Server 绑定?
有人可以指导我使用任何版本的 SQL Server 吗?
我现在正在使用 2003 版本。
Could someone give me an orientation on the use of any version of SQL Server?
I'm working with version 2003 at the moment.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个 C 库 freetds,它允许您与 Microsoft SQL Server 和 Sybase 数据库进行本机对话。
为了在 vala 中使用它,您需要创建一个“vapi 文件”(可能手动编写) ) 包含 Vala 语法中的类和方法声明
There is a C library freetds that allows you to natively talk to Microsoft SQL Server and Sybase databases.
In order to use it in vala you need to create a "vapi file" (probably writing it manually) containing the class and method declarations in Vala syntax
除了 o3o 提到的 freetds 库之外,您还可以使用 unixODBC 访问 Microsoft SQL Server。
Microsoft SQL Server 有多个 unixODBC 驱动程序:
他们的主页。
在撰写本文时,没有现成的适用于 unixODBC 的
vapi
文件。我正在为此研究两层方法。它尚未完成,但有一天可能会有用;) 。In addition to the freetds library that o3o mentioned you can use unixODBC to access Microsoft SQL Server.
There are multiple unixODBC drivers for Microsoft SQL Server:
There is also a list of unixODBC drviers on their homepage.
There is no readily available
vapi
file for unixODBC at the time of this writing. I'm working on a two layered approach for this. It's not finished yet, but might be useful someday ;).