Click here to Skip to main content
15,921,622 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Server Error in '/' Application. Pin
N a v a n e e t h18-Mar-08 21:14
N a v a n e e t h18-Mar-08 21:14 
GeneralRe: Server Error in '/' Application. Pin
Laddie18-Mar-08 22:35
Laddie18-Mar-08 22:35 
GeneralDisplay data in datalist at runtime Pin
raushan_918-Mar-08 20:17
raushan_918-Mar-08 20:17 
General[Message Deleted] Pin
yogeshpan18-Mar-08 19:45
yogeshpan18-Mar-08 19:45 
GeneralRe: Email Sending in asp.net 2.0 using C# Pin
Christian Graus18-Mar-08 20:31
protectorChristian Graus18-Mar-08 20:31 
GeneralCommand Prompt Calling and Parsing Pin
Michael10118-Mar-08 18:12
Michael10118-Mar-08 18:12 
GeneralRe: Command Prompt Calling and Parsing Pin
N a v a n e e t h18-Mar-08 20:26
N a v a n e e t h18-Mar-08 20:26 
QuestionINSERT IMAGES TO SQL SERVER TABLE USING C# CODING Pin
Phivos Stylianides18-Mar-08 11:54
Phivos Stylianides18-Mar-08 11:54 
Hi, i'm trying to save preset images of type jpeg in a SQL table. My code below
will be executed within a method every time i add a picture in the table.
The table is called ITEM and the column with the type image is called item_picture.
And the application root is ~/images/ where i have stored all the images.

try
{
byte[] image = new byte[4];
string qry = "insert into ITEM(item_picture) values(@OriginalPath)";
command = new SqlCommand(qry,connection);
command.Parameters.Add(new SqlParameter("@OriginalPath","~/images/app1.jpg"));
}
finally
{
connection.Open();
command.ExecuteNonQuery();
connection.Close();
}

I get the following error:
Operand type clash: nvarchar is incompatible with image
How can i get this right?

Thanks!
GeneralRe: INSERT IMAGES TO SQL SERVER TABLE USING C# CODING Pin
pmarfleet18-Mar-08 12:17
pmarfleet18-Mar-08 12:17 
QuestionRe: INSERT IMAGES TO SQL SERVER TABLE USING C# CODING Pin
Phivos Stylianides18-Mar-08 12:26
Phivos Stylianides18-Mar-08 12:26 
GeneralRe: INSERT IMAGES TO SQL SERVER TABLE USING C# CODING Pin
Not Active18-Mar-08 12:48
mentorNot Active18-Mar-08 12:48 
QuestionRe: INSERT IMAGES TO SQL SERVER TABLE USING C# CODING Pin
Phivos Stylianides18-Mar-08 13:06
Phivos Stylianides18-Mar-08 13:06 
GeneralRe: INSERT IMAGES TO SQL SERVER TABLE USING C# CODING Pin
Not Active18-Mar-08 14:19
mentorNot Active18-Mar-08 14:19 
QuestionRe: INSERT IMAGES TO SQL SERVER TABLE USING C# CODING Pin
Phivos Stylianides18-Mar-08 15:06
Phivos Stylianides18-Mar-08 15:06 
GeneralRe: INSERT IMAGES TO SQL SERVER TABLE USING C# CODING Pin
Not Active18-Mar-08 15:53
mentorNot Active18-Mar-08 15:53 
General"Unable to cast object of type " in Gridview control when click on add button [modified] Pin
amistry_petlad18-Mar-08 9:51
amistry_petlad18-Mar-08 9:51 
GeneralRe: "Unable to cast object of type " in Gridview control when click on add button Pin
pmarfleet18-Mar-08 11:19
pmarfleet18-Mar-08 11:19 
GeneralRe: "Unable to cast object of type " in Gridview control when click on add button Pin
Not Active18-Mar-08 11:35
mentorNot Active18-Mar-08 11:35 
QuestionRe: "Unable to cast object of type " in Gridview control when click on add button Pin
amistry_petlad18-Mar-08 13:32
amistry_petlad18-Mar-08 13:32 
GeneralRe: "Unable to cast object of type " in Gridview control when click on add button Pin
Not Active18-Mar-08 14:20
mentorNot Active18-Mar-08 14:20 
GeneralRe: "Unable to cast object of type " in Gridview control when click on add button Pin
amistry_petlad19-Mar-08 5:04
amistry_petlad19-Mar-08 5:04 
GeneralRe: "Unable to cast object of type " in Gridview control when click on add button Pin
Not Active19-Mar-08 5:57
mentorNot Active19-Mar-08 5:57 
GeneralRe: "Unable to cast object of type " in Gridview control when click on add button Pin
amistry_petlad20-Mar-08 3:36
amistry_petlad20-Mar-08 3:36 
GeneralFormView Not Inserting Pin
Brady Kelly18-Mar-08 7:50
Brady Kelly18-Mar-08 7:50 
GeneralRe: FormView Not Inserting Pin
Brady Kelly18-Mar-08 8:40
Brady Kelly18-Mar-08 8:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.