Some datastore like MongoDB return an object ( {code} DBCursor {code} ) that should be closed when we have finished to loop accross the results of a native query.
Right now we are returning an {code}Iterable<Tuple>{code} but it should be something like {code} TupleCursor extends Iterable<Tuple>, Closeable {code}
|