仅使用 SQL 将图片插入 SQL Server 2005 图像字段

Insert Picture into SQL Server 2005 Image Field using only SQL(仅使用 SQL 将图片插入 SQL Server 2005 图像字段)
本文介绍了仅使用 SQL 将图片插入 SQL Server 2005 图像字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用 SQL Server 2005 和 Management Studio 如何将图片插入表的 Image 类型列?

Using SQL Server 2005 and Management Studio how do I insert a picture into an Image type column of a table?

最重要的是我如何验证它是否存在?

Most importantly how do I verify if it is there?

推荐答案

CREATE TABLE Employees
(
    Id int,
    Name varchar(50) not null,
    Photo varbinary(max) not null
)


INSERT INTO Employees (Id, Name, Photo) 
SELECT 10, 'John', BulkColumn 
FROM Openrowset( Bulk 'C:photo.bmp', Single_Blob) as EmployeePicture

这篇关于仅使用 SQL 将图片插入 SQL Server 2005 图像字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)