Since you have not posted any code, I do not know how much you know. I assume that you already understand how to execute the query and get the result using OracleDataReader.
There is one combination with the LONG and LONG RAW columns. You must set the InitialLONGFetchSize property of your OracleCommand to a nonzero value.
The default value of InitialLONGFetchSize is zero, which means that data will not be retrieved for LONG or LONG RAW columns. If you set the value to -1, all data will be restored. You might not want to do this for larger values. If you set it to anything above zero, the number of bytes will be fetched and cached.
You should read the documentation for InitialLONGFetchSize , because there is some other information you need to know.
source share