If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ANSI SQL > Decode XML text field to display my image

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-17-04, 13:48
LNHockey LNHockey is offline
Registered User
 
Join Date: Feb 2004
Posts: 13
Decode XML text field to display my image

Im trying to copy an image from my xml to a nother DB of SQL-Server to a image field. I can encode my field but how do i save it back to a image column. !!

thanx

============================================
declare @data nvarchar(4000)
declare @handle int

--SELECT TOP 1 * FROM TblTypeSection for xml auto, binary base64

set @data = 'MY XML TAGS GOES HERE'

EXEC sp_xml_preparedocument @handle OUTPUT, @data
begin transaction
SELECT * FROM TblTypeSection WHERE IdTypeSection = 3886

INSERT into TblTypeSection SELECT [IdTypeSection], [sNomSection], [IdSectionSuperieur], [IdTypeSalle], [sCoteSection], isnull([bAfficheChoixSite],0), isnull([bFauteuilRoulant],0),
[ImgSection], [sDecoupage], isnull([bBilletNiveau],0), isnull([bBilletSection],0), [sCodeSection], isnull([bModeMeilleurBilet],0), isnull([bAdmissionGeneraleSection],0), isnull([iHauteurImageTypeSection],0)
FROM OPENXML (@handle, N'//TblTypeSection')
WITH
(
[IdTypeSection] [int] ,
[sNomSection] [nvarchar](50),
[IdSectionSuperieur] [int],
[IdTypeSalle] [int],
[sCoteSection] [nvarchar](2),
[bAfficheChoixSite] [bit],
[bFauteuilRoulant] [bit],
[ImgSection] [image],
[sDecoupage] [nvarchar](500),
[bBilletNiveau] [bit],
[bBilletSection] [bit],
[sCodeSection] [nvarchar](50),
[bModeMeilleurBilet] [bit],
[bAdmissionGeneraleSection] [bit],
[iHauteurImageTypeSection] [int]
)

SELECT * FROM TblTypeSection WHERE IdTypeSection = 3886
rollback
EXEC sp_xml_removedocument @handle
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On