Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~471 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for freshfitz

[CODE]// this is connection con = new SqlConnection("initial Catalog=[COLOR="Red"]Database name[/COLOR]; server=.; Integrated Security=true;"); //this is adapter SqlDataAdapter ad = new SqlDataAdapter("select * from [COLOR="red"]table name [/COLOR]where [COLOR="red"]searched feild [/COLOR]like '%" + textBox3.Text + "%'", con); SqlCommandBuilder cb = new SqlCommandBuilder(ad); ds.Clear(); ad.Fill(ds); dataGridView1.DataSource = ds.Tables[0]; if (textBox3.Text == "" || …

Member Avatar for pradeep_skiet
0
471

The End.