I am developing an application with ODAC for 11g r2 Oracle.data.access 2.112.3.0
I have a table(65000 records) containing the SDO_GEOMETRY column in a query and the recovery column byte type using
oracledatareader.reader but is very slow.
Example:
select SDO_UTIL.TO_WKBGEOMETRY(GEOM) as GEOM,OID from GEO.BGI_1001_URB_SARP_24878
oraComm.InitialLOBFetchSize = -1;
Oracle.DataAccess.Client.OracleDataReader oraReader = oraComm.ExecuteReader();
oraReader = oraComm.ExecuteReader(CommandBehavior.SequentialAccess);
while (oraReader.Read()){ //slow}
I hope you can Help,
thanks,
Greetings.