search for: simplequery

Displaying 2 results from an estimated 2 matches for "simplequery".

Did you mean: simple_query
2009 Nov 06
1
issues with SSOAP when wsdl has ComplexTypes
...was able to create the ServiceInfo class object and was able to make the function call, but I was getting an error in the toSOAP(). > sinfo = c(clientId=1, serviceType='Engine') > class(sinfo) <- def at classes$`SOAP/DataService`$ServiceInfo > res = def at functions$simpleQuery(sinfo, 'select 1 as One') Loading required package: bitops Error in toSOAP(argValues[[i]], methodCall, type = typedef, literal = .literal) : No code yet for the toSOAP method for any object and ClassDefinition pair with literal = FALSE Second attempt: I then flattened the Ser...
2010 May 10
3
dbSendQuery with R variables
Rhelpers: I'd like to modify this RSQLite statement: rs_stations<-dbSendQuery(con_stations, "select * from stations") so that stations is actually an R variable, e.g.: stations=c("stationA","stationB") How would I modify the above statement to query from stations[[1]] (aka "stationA")? --j