I am working on a visual C# program for image processing.I am trying to add image to sql database using Visual C# (Windows forms) and ADO.NET.
I have converted the i
Execute this stored procedure:
create procedure prcInsert ( @txtEmpNo varchar(6), @photo image ) as begin insert into Emp values(@txtEmpNo, @photo) end
Table Emp:
create table Emp ( [txtEmpNo] [varchar](6) NOT NULL, imPhoto image )