Save image column to file in SQL Server 2000

后端 未结 1 408
南方客
南方客 2021-01-16 23:31

I have a table with an image column in SQL Server 2000. I need to save the image data to a file on the file system. In SQL Server 2005 I can use the ADODB.Stream object fo

相关标签:
1条回答
  • 2021-01-16 23:37

    ADODB.Stream is not a SQL component, is an ADO component distributed with MDAC/WDAC. So simply install latest MDAC/WDAC on the SQL 2000 machine and you'll have ADODB.Stream at your disposal to use.

    0 讨论(0)
提交回复
热议问题