I've a simple c# application which tries to read and write a single row to SQL Server Database. That row contains an Image field that I fill with 100 MB or little greater than.
Every time I get System.OutOfMemoryException.
So, instead to read and write the array bytes in a single instruction, I would like do that in more than one instruction by appending all together.
Is it possibile accomplish that through SqlDataAdapter?