C# 增加 删除 更新 方法
标签:build rom 影响 nbsp public body .exe summary sele
///
/// 增加一条数据
///
public int Add(string 表名,string 参数,string 参数值)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("insert into ");
strSql.Append(表名);
strSql.Append("(");
strSql.Append(参数);
strSql.Append(") values (");
strSql.Append(参数值);
strSql.Append(") ");
strSql.Append(";select @@IDENTITY"); //返回上一次插入数据的id
//执行 语句
object obj=""; //执行 语句//= DbHelperSQL.GetSingle(strSql.ToString());
if (obj == null)
{
return 0;
}
else
{
return Convert.ToInt32(obj);
}
}
///
/// 更新一条数据
///
public int Update(string 表名, string 参数, string 条件) //返回受影响的行数
{
StringBuilder strSql = new StringBuilder();
strSql.Append("update ");
strSql.Append(表名);
strSql.Append(" set ");
strSql.Append(参数);
strSql.Append(" where ");
strSql.Append(条件);
//执行sql语句
object obj = "";
if (obj == null)
{
return 0;
}
else
{
return Convert.ToInt32(obj);
}
}
///
/// 删除一条数据
///
public bool Delete(string 表名,string 条件)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("delete from ");
strSql.Append(表名);
strSql.Append(" where ");
strSql.Append(条件);
int rows = 0;// = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);
if (rows > 0)
{
return true;
}
else
{
return false;
}
}
C# 增加 删除 更新 方法
标签:build rom 影响 nbsp public body .exe summary sele
原文地址:https://www.cnblogs.com/enych/p/8341391.html
评论