[R] need help with connecting to SQL Server2008 Express with RJDBC

2012-01-06 Thread cvez
://mypc/MyDB:1433;databaseName=bkt1;) and I got this err message: jcall(drv@jdrv, Ljava/sql/Connection;, connect, as.character(url)[1], : com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host cvez-PC/MyDB, port 1433 has failed. Error: null. Verify the connection

Re: [R] question about rev

2012-01-06 Thread cvez
the function /rev / REVERSEs the order of the vector, as v= c(1,2,3) rev(v)= 3,2,1 if you want the opposite value , just add a exclamation in front of the vector: v=c(T,F,T,T); !v is F,T,F,F -- View this message in context: http://r.789695.n4.nabble.com/question-about-rev-tp4268518p4268716.html