[R] system(mysql... Does not recognize as passing an attribute (No HTML)

2007-01-16 Thread Lapointe, Pierre
Hi, This is my command line request: mysql -u root -ppassword -D quant c:/cline.txt This line works from the command line in windows. In R, when I try to use the system function, it does not work, system(paste('mysql -u root -ppassword -D quant c:/cline.txt'),show.output.on.console = TRUE)

Re: [R] system(mysql... Does not recognize as passing an attribute (No HTML)

2007-01-16 Thread Henrique Dallazuanna
You can try this: system(paste('mysql -u hsdlife -p -D life ', file('c:/teste.txt')), show.output.on.console = TRUE) On 16/01/07, Lapointe, Pierre [EMAIL PROTECTED] wrote: Hi, This is my command line request: mysql -u root -ppassword -D quant c:/cline.txt This line works from the command