Solución:
Encontré la respuesta:
SQL Server tiene un comando “OPENROWSET” que acepta una ruta de archivo.
p.ej
Update myTable
set Image = (
SELECT *
FROM OPENROWSET(BULK N'C:image.png', SINGLE_BLOB) test)
where ImageID = 1
Fuente: http://shortfastcode.blogspot.com/2009/12/insert-binary-data-like-images-into-sql.html
Prueba esto:
INSERT INTO Table (field1) VALUES (0xABCDEF)
Dónde 0xABCDEF
son sus datos binarios representados como una secuencia hexadecimal.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)