普遍与Linux
我有兴趣从 Linux 查询在 Windows 平台上运行的 Pervasive DB 服务器。
有人知道这是否可行、需要什么以及有哪些资源可供我阅读?
谢谢!
I'm interested in quering a Pervasive DB server running on a Windows platform from Linux.
Would anyone happen to know if this is possible, what's required and what resources there are for me to read up on it?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用的是哪个版本的 Pervasive?自 v8 以来的所有版本(包括 v9 和 v10)都支持 Pervasive.SQL 服务器引擎中包含的 Linux 客户端。 V9 和 V10 客户端也可以从 Pervasive 网站 (http: //www.pervasivedb.com/Database/Products/PSQLv10/Pages/PSQLOverview.aspx)。在 Linux 计算机上安装客户端后,您可以创建 ODBC DSN 或使用 Btrieve API 来访问数据。
What version of Pervasive are you using? All versions since v8 (including v9 and v10) support a Linux client which is included with the Pervasive.SQL server engine. V9 and V10 clients are also available for download from the Pervasive website (http://www.pervasivedb.com/Database/Products/PSQLv10/Pages/PSQLOverview.aspx). Once you've got a client installed on the Linux machine, you can create an ODBC DSN or use the Btrieve API to access the data.
大多数数据库至少有一个命令行客户端来连接到数据库。检查您的数据库品牌,看看是否有此类工具。例如,Mysql有
mysql
命令行客户端用于查询MySql数据库。否则,另一种方法是您可能想尝试设置 使用 Perl 的 ODBC。Most database have at least a command line client to connect to database. check your brand of database to see if you have such tools. For example, Mysql has
mysql
command line client for making query to MySql database. Otherwise, another way is you might want to try setting up ODBC with Perl.