O
Olivier Matrot
Hello,
I would like to use UPDATETEXT in SQL Server to manage BLOB data the
efficient way. This topic is discribed in
http://msdn.microsoft.com/library/d...resourceswhenwritingblobvaluestosqlserver.asp
The problem with the sample is that, in my case, the image column accepts
NULL value. Also, should we really insert one byte of data in the column to
successfully retreive a valid pointer ?
Anyway, the idea is to manage blob data insertion in chunck during the
OnRowAdded event (BLOB data if available is ignored during the insertion of
the row). The problem is that a this level, I need to retreive the pointer
to blob the data and a connection to be able to do the work... Because this
event is implemented in the datatable class, it has no idea of such
informations...
Any help appreciated.
I would like to use UPDATETEXT in SQL Server to manage BLOB data the
efficient way. This topic is discribed in
http://msdn.microsoft.com/library/d...resourceswhenwritingblobvaluestosqlserver.asp
The problem with the sample is that, in my case, the image column accepts
NULL value. Also, should we really insert one byte of data in the column to
successfully retreive a valid pointer ?
Anyway, the idea is to manage blob data insertion in chunck during the
OnRowAdded event (BLOB data if available is ignored during the insertion of
the row). The problem is that a this level, I need to retreive the pointer
to blob the data and a connection to be able to do the work... Because this
event is implemented in the datatable class, it has no idea of such
informations...
Any help appreciated.