c#怎么读取SQL数据然后显示出来string sql=“"//数据库查询语句connection con=new connection(connstring);Command cmd=new Command(sql,con);con.open();SqlDataReader dr=cmd.ExcuteReader;if(dr.read()){this.txtid.text=dr[0];//txtid是textbox的id}dr.close();con.close();