使用 RMySQL、R 和 MySQL 连接到数据库

发布于 2024-12-20 21:52:14 字数 99 浏览 0 评论 0原文

我正在尝试从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流绪微梦 2024-12-27 21:52:14

问题解决了。在某个目录中创建一个文件,并在该文件中写入以下内容:

[client]
password=yourpass
username=yourusername
...
ssl-ca=yourcertspath

然后将文件名传递给 dbConnect 的 default.file 参数

Problem solved. Create a file in some directory and in that file write the following:

[client]
password=yourpass
username=yourusername
...
ssl-ca=yourcertspath

Then pass the file name to the default.file param of dbConnect

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文