Dejene
Dejene

Reputation: 11

datagridview in c#

I am able to bind the result of query to datagridview. i.e., SELECT * FROM employee where empid=@empid to datagridview in winform.

What I need is a code that helps to update the result of this query on the datagridview & cause it to be showed on employee table in my database using c#.

Thank you

Upvotes: 0

Views: 369

Answers (1)

Cerebrus
Cerebrus

Reputation: 25775

What you really need is to read a few tutorials on the subject... Try googling for something like "DataGridView update C#".

Here are two I found:

SwitchOntheCode.com
csharp-online.net

Upvotes: 2

Related Questions