将 SQLite 与 SAS 结合使用的最简单方法是什么?
我想研究如何从 SAS 访问 SQLite DB。做到这一点最简单的方法是什么?我们是否可以授权 SAS 产品来执行此操作?我不想使用 ODBC 驱动程序,因为它似乎是很久以前编写的,并且不是 SQLite 的正式一部分。
I want to investigate how to access SQLite DB from SAS. What's the easiest way of doing this? Is there a SAS product that we can license to do that? I don't want to use ODBC drivers as that seems to have been written a long time ago and is not officially part of SQLite.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SAS支持从管道读取数据(在unix环境中)。本质上,您可以设置一个文件名语句来在主机环境中执行 sqlite 命令,然后处理命令输出,就像从文本文件中读取它一样。
SAS 支持页面:http:// /support.sas.com/documentation/cdl/en/hostunx/61879/HTML/default/viewer.htm#pipe.htm
示例:
SAS supports reading data from pipes (in a unix environment). Essentially, you can set up a filename statement to execute an sqlite command in the host environment, then process the command output as if reading it from a text file.
SAS Support page: http://support.sas.com/documentation/cdl/en/hostunx/61879/HTML/default/viewer.htm#pipe.htm
Example: