Click here to Skip to main content
15,917,628 members
Home / Discussions / C#
   

C#

 
GeneralRe: Port Pin
Jakob Farian Krarup18-Sep-06 0:06
Jakob Farian Krarup18-Sep-06 0:06 
QuestionSocket Pin
mehrdadc4817-Sep-06 4:06
mehrdadc4817-Sep-06 4:06 
AnswerRe: Socket Pin
Ravi Bhavnani17-Sep-06 5:10
professionalRavi Bhavnani17-Sep-06 5:10 
Questionquestion about autodownloading an update Pin
likefood17-Sep-06 3:22
likefood17-Sep-06 3:22 
AnswerRe: question about autodownloading an update Pin
Ravi Bhavnani17-Sep-06 5:14
professionalRavi Bhavnani17-Sep-06 5:14 
GeneralRe: question about autodownloading an update Pin
likefood17-Sep-06 7:44
likefood17-Sep-06 7:44 
AnswerRe: question about autodownloading an update Pin
Anthony Mushrow17-Sep-06 7:35
professionalAnthony Mushrow17-Sep-06 7:35 
GeneralRe: question about autodownloading an update Pin
likefood17-Sep-06 16:13
likefood17-Sep-06 16:13 
QuestionWebBrowser Control User agent Pin
DamagedGenius17-Sep-06 2:52
DamagedGenius17-Sep-06 2:52 
AnswerRe: WebBrowser Control User agent Pin
Green Fuze17-Sep-06 7:37
Green Fuze17-Sep-06 7:37 
Question32bit to 64bit Pin
Mohammad Daba'an16-Sep-06 23:37
Mohammad Daba'an16-Sep-06 23:37 
AnswerRe: 32bit to 64bit Pin
zaccheus17-Sep-06 9:22
zaccheus17-Sep-06 9:22 
GeneralRe: 32bit to 64bit Pin
Mohammad Daba'an18-Sep-06 2:23
Mohammad Daba'an18-Sep-06 2:23 
QuestionList View :: item.Text search Pin
mm31016-Sep-06 22:57
mm31016-Sep-06 22:57 
AnswerRe: List View :: item.Text search Pin
g00fyman17-Sep-06 1:30
g00fyman17-Sep-06 1:30 
QuestionHow to get or set font baseline with GDI Pin
kubaj16-Sep-06 21:33
kubaj16-Sep-06 21:33 
AnswerRe: How to get or set font baseline with GDI Pin
Insincere Dave17-Sep-06 5:07
Insincere Dave17-Sep-06 5:07 
QuestionWindows Mobile Application Pin
aruna_koride16-Sep-06 19:18
aruna_koride16-Sep-06 19:18 
AnswerRe: Windows Mobile Application Pin
ar-116-Sep-06 21:13
ar-116-Sep-06 21:13 
QuestionDatagrid Values. Pin
deepaks316-Sep-06 18:04
deepaks316-Sep-06 18:04 
AnswerRe: Datagrid Values. Pin
Jakob Farian Krarup17-Sep-06 19:36
Jakob Farian Krarup17-Sep-06 19:36 
Questionopening a file such as pdf,doc etc Pin
Amar Chaudhary16-Sep-06 2:40
Amar Chaudhary16-Sep-06 2:40 
AnswerRe: opening a file such as pdf,doc etc Pin
Judah Gabriel Himango16-Sep-06 16:35
sponsorJudah Gabriel Himango16-Sep-06 16:35 
GeneralRe: opening a file such as pdf,doc etc Pin
Amar Chaudhary17-Sep-06 6:55
Amar Chaudhary17-Sep-06 6:55 
QuestionWhat is the reason of this error "Must declare the scalar variable @MySign"? Pin
Orchid8516-Sep-06 2:20
Orchid8516-Sep-06 2:20 
Hi every one ,
I'm programming with C# and I wrote below code :
command = new System.Data.Odbc.OdbcCommand();
command.CommandType = System.Data.CommandType.Text;
commString = "INSERT INTO MyTable (MySign) VALUES (@MySign)";
command.CommandText = commString;
command.Connection = SqlConn; //is defined
command.Parameters.Add("@MySign", OdbcType.VarBinary).Value = MySign;
SqlConn.Open();
command.ExecuteNonQuery();
SqlConn.close()
but I get <must declare="" the="" scalar="" variable="" "@mysign"=""> error,what is my mistake?
Please help me.
yours sincerely.
Orchid

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.