SQLCommand的用法public DataTable newTable(string procName,CommandType ct){ ODCmd = new SqlCommand(procName,ODCon);ODCmd.CommandType =CommandType.StoredProcedure;using (ODSdr = ODCmd.ExecuteReader(CommandBehavior.CloseConnection)){dt.Load(ODSdr);}r
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/08 23:57:45
SQLCommand的用法public DataTable newTable(string procName,CommandType ct){ ODCmd = new SqlCommand(procName,ODCon);ODCmd.CommandType =CommandType.StoredProcedure;using (ODSdr = ODCmd.ExecuteReader(CommandBehavior.CloseConnection)){dt.Load(ODSdr);}r
SQLCommand的用法
public DataTable newTable(string procName,CommandType ct)
{
ODCmd = new SqlCommand(procName,ODCon);
ODCmd.CommandType =CommandType.StoredProcedure;
using (ODSdr = ODCmd.ExecuteReader(CommandBehavior.CloseConnection))
{
dt.Load(ODSdr);
}
return dt;
}
其中procname="procSelectRecommendNews"
提示找不到存储过程该怎么解决
SQLCommand的用法public DataTable newTable(string procName,CommandType ct){ ODCmd = new SqlCommand(procName,ODCon);ODCmd.CommandType =CommandType.StoredProcedure;using (ODSdr = ODCmd.ExecuteReader(CommandBehavior.CloseConnection)){dt.Load(ODSdr);}r
SqlDataReader sdr = cmd.ExecuteReader();--查询,很明显可以看到 返回的是 SqlDataReader对象 ,然后在使用SqlDataReader的 sdr.Read()方法读出数据