// 我是一名新手请大家帮帮忙
定义适配器 SqlDataAdatapter 时 参数( dboOwner + ".usp_SelectStudentsPartInfo"),的作用是什么?
原来我记得此处是sql查询语句现在怎么成这样了?不理解
请高手帮帮忙!!!
public DataSet GetAllStudents()
{
DataSet ds = new DataSet();
SqlConnection conn = new SqlConnection(connString);
SqlDataAdapter objAdapter = new SqlDataAdapter(dboOwner + ".usp_SelectStudentsPartInfo", conn);
objAdapter.SelectCommand.CommandType = CommandType.StoredProcedure;
objAdapter.Fill(ds, "studentTable");
conn.Close();
conn.Dispose();
return ds;
}
杨魅力
开满天机