May 10, 2004 #1 Geri2 Programmer Jan 21, 2004 17 DE Hi all, I have a little problem. I want to use a the image datatyp but I don't know how to fill it. Can somebody tell me step by step how it works? Thanks Geri
Hi all, I have a little problem. I want to use a the image datatyp but I don't know how to fill it. Can somebody tell me step by step how it works? Thanks Geri
May 11, 2004 Thread starter #2 Geri2 Programmer Jan 21, 2004 17 DE Sorry I forgot what I use. I use MS SQL Enterprise Manager on Version 8.0.. Upvote 0 Downvote
May 11, 2004 #3 JBaileys Technical User Jun 23, 2003 244 US Geri, I suggest looking at the writetext and readtext functions. Code includes: Declare @ptrval binary(16) select @ptrval = textptr(<<imagefield>>) from <<table>> where ... writetext <<table>>.<<imagefield>> @ptrval 'my text...' go Upvote 0 Downvote
Geri, I suggest looking at the writetext and readtext functions. Code includes: Declare @ptrval binary(16) select @ptrval = textptr(<<imagefield>>) from <<table>> where ... writetext <<table>>.<<imagefield>> @ptrval 'my text...' go