Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
147 views
in Technique[技术] by (71.8m points)

How to change database (e.g. "use my_database") using RJDBC in R-Studio?

I'm having trouble finding the correct command to change databases in R-Studio. I know I can connect to a specific database at the initial connection but I can't seem to find the correct way to execute a "use" command (e.g. "use my_schema").

The following fail with various errors:

dbSendQuery(conn, "use my_schema");

dbExecute(conn, "use my_schema");

dbSendStatement(conn, "use my_schema");

I'm not finding what I'm looking for in the documentation here:

https://www.rdocumentation.org/packages/RJDBC/versions/0.2-8/topics/JDBCConnection-methods

https://www.progress.com/blogs/complete-guide-to-r-for-datadirect-odbc-jdbc

https://community.snowflake.com/s/article/Executing-use-commands-in-R-Studio

https://rdrr.io/cran/RJDBC/

question from:https://stackoverflow.com/questions/65871081/how-to-change-database-e-g-use-my-database-using-rjdbc-in-r-studio

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...