Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
dplyrR でパッケージを使用したいのですが、SSL 暗号化されたリモート データベースに接続します。ここで回避策を設定するにはどうすればよいですか? RODBCパッケージを利用したバックエンドを立ち上げようと考えています。これは可能ですか?
dplyr
実際には、SSL 暗号化接続に接続でき、dplyr簡単です。
次のように、パラメーター内で接続のパラメーターを渡すだけですdbname(これは postgresql の例です)。
dbname
db <- src_postgres(dbname="dbname=my_db sslcert=my_cert.crt sslkey=my_key.key sslmode=require", user="username", host="your.host.com")