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.
我想用包MySQL从内部反复查询数据库。我有一个我通常这样称呼的:RRODBCMySQL procedure
MySQL
R
RODBC
MySQL procedure
CALL`myDB`.`myProc`(x,y)
如果我使用 RODBC,如何有效地将 x 和 y 传递给函数?我是否坚持使用 paste() 如下:
sqlQuery(channel,paste("CALL`myDB`.`myProc`(",x,",",y,")"))
是的,就这样使用 paste,除了考虑使用 sep=""