kubo/rust-oracle

Support for LONG, LONG RAW and BLOB data types?

Opened this issue · 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

kubo commented

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.