Using C# & MySQL

When I select the combobox value, the corresponding value should display in textbox

C# Code.

cmd2 = new OdbcCommand("Select name from users where username='" + cmbuser.Text  + "'", con);
        dr= cmd2.ExecuteReader();
        while (dr.Read())
        {
            txtusername.Text = dr("user");
        }

The Above code is working in VB.Net, but in C# showing error as Error "dr' is a 'field' but is used like a 'method' "

It is showing error in this line txtusername.Text = dr("user");

How to solve this error, what problem in my code.

Need C# Code Help

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

May be you need to use txtusername.Text = dr.GetString(0); instead of your error line...

link|improve this answer
feedback

Use the rectangular brackets in c#:

txtusername.Text = dr["user"];

Edit: You have to cast the object to the desired type after.

link|improve this answer
this will return type object – You_Have_No_Idea Aug 2 '10 at 13:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.