Richard Crist
Well-known member
Anyone ever worked with Oracle DBs in .NET?
In particular the DataReader.GetOracleValue() method?
Im trying to take the binary data returned by GetOracleValue and turn it into a normal string. That is, convert each byte of binary data into a char array or string so that I can display it in a text box.
We have text data stored in an Oracle db in columns of ORACLE RAW format to more efficiently use the db. The raw data is basically ASCII data. Im using GetOracleValue because GetOracleString and other methods dont address RAW data. I just need to get the data out of the RAW format and into a .NET string representation for display in a text box. So far I have been able to turn each byte into a string representation (byte value 123 into "123").
If there is a way to easily convert the RAW data from GetOracleValue into strings please let me know. Thank you!
In particular the DataReader.GetOracleValue() method?
Im trying to take the binary data returned by GetOracleValue and turn it into a normal string. That is, convert each byte of binary data into a char array or string so that I can display it in a text box.
We have text data stored in an Oracle db in columns of ORACLE RAW format to more efficiently use the db. The raw data is basically ASCII data. Im using GetOracleValue because GetOracleString and other methods dont address RAW data. I just need to get the data out of the RAW format and into a .NET string representation for display in a text box. So far I have been able to turn each byte into a string representation (byte value 123 into "123").
If there is a way to easily convert the RAW data from GetOracleValue into strings please let me know. Thank you!