gpt4 book ai didi

sql-server - 如何将图像插入到 SQL Server 数据库表中

转载 作者:行者123 更新时间:2023-12-02 21:17:51 24 4
gpt4 key购买 nike

我创建了一个新的 SQL Server 本地数据库,其中包含一个名为 drink 的表。我使用 Microsoft Visual Studio 2008。

在表格中我定义了以下列:

id [int], kind [varchar], year [datatime], image [image]

我想在 image 列中插入图片,但我不知道该怎么做。

我需要这个列,因为我想使用 VB.NET 在 DataGridView 中显示所有数据

感谢您的帮助!

最佳答案

使用 openrowset 可以将图像插入数据库:

insert into tableName (id,kind,ImageColumn) 
SELECT 1,'JPEG',BulkColumn
FROM Openrowset( Bulk '<Path of the image>', Single_Blob) as img

关于sql-server - 如何将图像插入到 SQL Server 数据库表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29439438/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com