这个是ASP.NET中一段删除代码,求大神解释一下
publicDataSetGetCodeBy(intiCount){SqlHelperdate=newSqlHelper();stringstrTop="";//定义st...
public DataSetGetCodeBy(int iCount)
{
SqlHelper date = new SqlHelper();
string strTop = "";//定义strtop为string类型
if (iCount > 1)//判断
{
strTop = "top " + iCount.ToString();
}
string sql = "select " + strTop + " * from [Users] ";
SqlConnection con = newSqlConnection(SqlHelper.connstring);
SqlCommand cmd = new SqlCommand(sql, con);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = null;
try
{
con.Open();
ds = new DataSet();
da.Fill(ds);
}
catch (SqlException ex)
{
throw ex;
}
catch (Exception ex)
{
throw ex;
}
finally
{
con.Close();
}
return ds;
} 展开
{
SqlHelper date = new SqlHelper();
string strTop = "";//定义strtop为string类型
if (iCount > 1)//判断
{
strTop = "top " + iCount.ToString();
}
string sql = "select " + strTop + " * from [Users] ";
SqlConnection con = newSqlConnection(SqlHelper.connstring);
SqlCommand cmd = new SqlCommand(sql, con);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = null;
try
{
con.Open();
ds = new DataSet();
da.Fill(ds);
}
catch (SqlException ex)
{
throw ex;
}
catch (Exception ex)
{
throw ex;
}
finally
{
con.Close();
}
return ds;
} 展开
展开全部
这个不是删除代码来的,只是一个查询代码。
比如,当我调用【DataSetGetCodeBy(0);】时,它的作用就是把表【Users】中所有的记录都查询出来。
当调用【DataSetGetCodeBy(100);】时,它就把表【Users】中的前100条记录显示出来。
除非下面这句【string sql = "select " + strTop + " * from [Users] ";】
换成类似于【string sql = "delete from [Users] where ...... ";】才是删除语句哦。
比如,当我调用【DataSetGetCodeBy(0);】时,它的作用就是把表【Users】中所有的记录都查询出来。
当调用【DataSetGetCodeBy(100);】时,它就把表【Users】中的前100条记录显示出来。
除非下面这句【string sql = "select " + strTop + " * from [Users] ";】
换成类似于【string sql = "delete from [Users] where ...... ";】才是删除语句哦。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询