Re: [R] Maximum length of R GUI input line?

2006-08-18 Thread Philippe Grosjean
You should put your SQL query in a variable, and use this variable in your call. Something like: MyQuery - bla bla bla MyQuery - paste(MyQuery, more bla bla) # doMyRequest(MyQuery) Best, Philippe Grosjean Eric Fegraus wrote: Hello, I'm using R 2.3.1 on Windows. I'm generating

Re: [R] Maximum length of R GUI input line?

2006-08-18 Thread Prof Brian Ripley
On Fri, 18 Aug 2006, Philippe Grosjean wrote: You should put your SQL query in a variable, and use this variable in your call. Something like: MyQuery - bla bla bla MyQuery - paste(MyQuery, more bla bla) # doMyRequest(MyQuery) Indeed. For the record, R has an limit of 1024 chars