建立连接:
SqlConnection con = new SqlConnection("server=localhost;uid="sa";pwd="";database="anyv"");
con.open();
执行SQL命令:
SqlCommand com = new Sqlcommand("select * from table",con);
下面可以用好多种方法,举一例:
SqlDataReader dr = com.ExecuteReader();
显示数据,方法很多,举一例:
this.DataGrid1.DataSource=dr;
.DataGrid1.DataBind();