I would like to repeatedly query a MySQL database from inside R with the RODBC package. I have a MySQL procedure that I normally call like this:

CALL`myDB`.`myProc`(x,y)

If I use RODBC, how can I pass x and y to the function efficiently? Am I stuck using paste() as in:

sqlQuery(channel,paste("CALL`myDB`.`myProc`(",x,",",y,")")) 
link|improve this question

65% accept rate
1  
For substituting specific values, sprintf() might be a little cleaner. – joran Feb 15 at 6:24
feedback

2 Answers

Yes, use paste just like that, except consider using sep=""

link|improve this answer
feedback

What are x and y? Are they INTs, DOUBLEs, etc? If they are VARCHAR, then you would need the following:

paste("CALL`myDB`.`myProc`(\"",x,"\",\"",y,"\")",sep=""). 

Depending on what MySQL is expecting to see, you may need to add the \"'s.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.