0

我有这样的桌子

CREATE TABLE [dbo].[Product](
    [Id] [int] IDENTITY(1,1) NOT NULL,
    [Name] [nvarchar](100) NOT NULL,
    [Description] [nvarchar](max) NOT NULL,
    [Price] [decimal](16, 3) NOT NULL,
    [SmallPhoto] [varbinary](max) NULL);

我想将图像加载到 [SmallPhoto] 字段中

主脚本看起来像这样

declare @filePath varchar(max)
declare @productId int

set @filePath = 'D:\myfile.png'
set @productId = 1

update Product
set SmallPhoto = -- some actions
where Id = @productId

预期结果

命令成功完成。:)

升级版:

1)我的数据库位于其他机器

2)我没有机会将文件复制到远程机器

4

0 回答 0