Is there any way to pass a variable defined within R to the sqlQuery function within the RODBC package? Specifically, I need to pass such a variable to either a scalar/table-valued function, a stored procedure, and/or perhaps the WHERE clause of a SELECT statement. For example, let:

x <- 1 ## user-defined

Then,

example <- sqlQuery(myDB,"SELECT * FROM dbo.my_table_fn (x)")

Or...

example2 <- sqlQuery(myDB,"SELECT * FROM dbo.some_random_table AS foo WHERE foo.ID = x")

Or...

example3 <- sqlQuery(myDB,"EXEC dbo.my_stored_proc (x)")

(You get the idea...)

Obviously, none of these work, but I'm thinking that there's something that enables this sort of functionality.

Any ideas?

Thanks in advance. Much appreciated!!

link|improve this question

56% accept rate
feedback

2 Answers

up vote 4 down vote accepted

Build the string you intend to pass. So instead of

example <- sqlQuery(myDB,"SELECT * FROM dbo.my_table_fn (x)")

do

example <- sqlQuery(myDB, paste("SELECT * FROM dbo.my_table_fn (", 
                                x, ")", sep=""))

which will fill in the value of x.

link|improve this answer
Ha! That's so simple! Can't believe I didn't think of this... Thanks Dirk!! Cheers. – Ray Bao Dec 1 '10 at 23:32
1  
Keep in mind, though, the dire consequences if your x value is something like col); DELETE * FROM my_table_fn; SELECT * FROM my_table_fn (col. Which is why it's much better to use placeholders than paste(). Some drivers support placeholders, some don't. – Ken Williams Jan 3 '11 at 17:30
feedback

try with this x <- 1 example2 <- fn$sqlQuery(myDB,"SELECT * FROM dbo.some_random_table AS foo WHERE foo.ID = '$x'")

link|improve this answer
Error: object 'fn' not found – Marek Dec 27 '10 at 13:04
feedback

Your Answer

 
or
required, but never shown

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