Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
This is my code:TStreamAccessor acceso;acceso=conexion.getConexion().newStreamAccessor(TAccessLocation.newInstance(coleccion));TResponse respuesta=null;//Invocamos la consultatry{TQuery tquery = new TQuery(XQuery);TInputStream is = acceso.openCursor(tquery,pos,cant);TResponseBuilderImpl aTRBI = new TResponseBuilderImpl(TDOMObjectModel.getInstance());respuesta = aTRBI.buildForXML(is);…how could i catch the open cursor handle???Alfonso.
Hello Alfonso,It seems here you are using classes from the TaminoAPI4J that are not documented which is not recommended. Anyway as far as I know there is no way to catch the cursor handle. You can use the fetchCursor() method of the TStreamAccessor interface. Is there a particular reason for wanting the cursor handle?Best regards,Stuart Fyffe-CollinsSoftware AG (UK) Ltd.