rust-oracle icon indicating copy to clipboard operation
rust-oracle copied to clipboard

Support for LONG, LONG RAW and BLOB data types?

Open rgutierrez2004 opened this issue 4 years ago • 1 comments

Would be nice to have support for at least one of these: LONG, LONG RAW and BLOB data type, nowadays is very common to store binary data in the DB (Megabytes or Gigabytes).

Any chance this can be done in the short term?

Regards, R

rgutierrez2004 avatar Apr 23 '21 19:04 rgutierrez2004

Inserting and querying LOB data types as String or Vec<u8> are supported. They are tested here.

If you need to read and write a portion of LOB, it has not been supported. Implementing std::io::Read, std::io::Seek and std::io::Write for BLOB is easy. However it isn't easy for CLOB.

kubo avatar Apr 25 '21 14:04 kubo