Hi,
I am facing problem inserting binary data into sql data type varbinary.
I want to save an object data type in var binary data type into sql.It gives a followin error.
The name 'DocumentData' is not permitted in this context. Only constants, expressions, or variables allowed here. Column names are not permitted.
I do not use ASP Upload file.
Any type of help .
Thanks in advance
Friend
Hello my friend,
The variable is not being passed to the SQL correctly. For example: -
INSERT INTO tblCountry (CountryName) VALUES ('Italy') - this is fine
INSERT INTO tblCountry (CountryName) VALUES (Italy) - not right because single quotes are missing. However, SQL thinks I am referring to a column name when I say Italy. Check your SQL.
Kind regards
Scotty
|||
Hi,
Thanks for your reply.Follwoing is my code plz review and help me if i am making any mistake.
query =
"Insert into Documents(DocumentID,DocumentName,DocumentData,DocumentType,FileID,Field1,Field2,Field3,Field4)values (@.DocumentID,@.DocumentName,DocumentData,DocumentType,FileID,Field1,Field2,Field3,Field4,)";sc.Parameters.Add(
"@.DocumentID",SqlDbType.Int, 10);sc.Parameters.Add(
"@.DocumentName",SqlDbType.VarChar, 15);sc.Parameters.Add(
"@.DocumentData",SqlDbType.Binary, 15);sc.Parameters.Add(
"@.DocumentType",SqlDbType.VarChar, 10);sc.Parameters.Add(
"@.FileID",SqlDbType.Int, 10);sc.Parameters.Add(
"@.Field1",SqlDbType.VarChar, 15);sc.Parameters.Add(
"@.Field2",SqlDbType.VarChar, 15);sc.Parameters.Add(
"@.Field3",SqlDbType.VarChar, 15);sc.Parameters.Add(
"@.Field4",SqlDbType.VarChar, 15);
sc.Parameters[
"@.DocumentID"].Value = documentid;sc.Parameters[
"@.DocumentName"].Value = docname;sc.Parameters[
"@.documentData"].Value=fileimg;sc.Parameters[
"@.documentType"].Value = doctype;sc.Parameters[
"@.FileId"].Value = fileid;sc.Parameters[
"@.Field1"].Value = f1;sc.Parameters[
"@.Field2"].Value = f2;sc.Parameters[
"@.Field3"].Value = f3;sc.Parameters[
"@.Field4"].Value = f4;sc.CommandText = query;
sc.ExecuteNonQuery();
|||Hello again my friend,
I see it now. You are missing the @. symbols within the insert statement at the top of your code for every parameter after @.DocumentName. Besides this, have a space between ) and values. Also, you need to take out the comma after Field4 at the end of the values group so it ends in a bracket, not a comma with a bracket. I amend it as follows: -
query ="Insert into Documents (DocumentID,DocumentName,DocumentData,DocumentType,FileID,Field1,Field2,Field3,Field4) values (@.DocumentID,@.DocumentName, @.DocumentData, @.DocumentType, @.FileID, @.Field1, @.Field2, @.Field3, @.Field4)";
Kind regards
Scotty
|||
Hi,
Thanks, thank you very much..
Best Regards,
Adnan
No comments:
Post a Comment