RDBMS - BLOB Data Type
The post below was designed for the BLOB data type in SQL Server (2014) but similar concepts should work for other data sources as well. Setup: in SQL Server Mgmt Studio CREATE TABLE [BLOBS]( [Id] [int] IDENTITY(1,1) NOT NULL, [Data] var...