In the Silverstripe 4 docs the possiblity to use a BLOB or s3 storage is mentioned (https://www.silverstripe.org/learn/lessons/v4/working-with-files-and-images-1)
But I cannot find any documention how to handle a BLOB storage. Is this only about configuration or is some implementation required? Are there examples?
You can create a custom DBField class for BLOB.
Here is the example
DBBlobField
class works in SS 4.2 with MariaDB.mediumblob
is the BLOB type supported by your database.Define the $db field in DataObject.
Save file content into
Data
field.