[求助]想知道.net中可以读取显示数据库都有哪些?都要怎么操作?
想知道.net中可以读取显示数据库都有哪些?都要怎么操作?我学的不系统,都是东一点西一点
现在只知道用dataGrid显示数据库,
SqlCommand cmd=new SqlCommand("select * from table",conn);
SqlDataAdapter sda=new SqlDataAdapter(cmd);
DataSet ds=new DataSet();
sda.Fill(ds);
this.dataGrid1.DataSource=ds;
其他别的用法就不很清楚了,高手们指点一下吧