Evaluates the given command, but does not fetch the result (useful for assignment operations).
- Parameters:
-
| cmd | command/expression string |
Implements de.alysis.r.basemodel.connection.BaseConnection. 00171 {
00172 logger.debug("voidEval(String cmd) called.");
00173 try {
00174 c.voidEval(cmd);
00175 } catch (RSrvException e) {
00176 String message = "Exception from Rserve. ";
00177 logger.error(message, e);
00178
00179 }
00180 }
|