使用 RMySQL、R 和 MySQL 连接到数据库
我正在尝试从 R 连接到我的数据库。当我从 shell 启动服务器(使用 unix)时,我必须传递 --ssl-ca=myfile。如何使用 dbConnect 函数传递此标志?谢谢。
I am trying to connect to my database from R. When I start the server from the shell (using unix), i have to pass the --ssl-ca=myfile. How do I pass this flag using the dbConnect function? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题解决了。在某个目录中创建一个文件,并在该文件中写入以下内容:
然后将文件名传递给 dbConnect 的 default.file 参数
Problem solved. Create a file in some directory and in that file write the following:
Then pass the file name to the default.file param of
dbConnect