You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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.
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
The text was updated successfully, but these errors were encountered: