.net删除数据库记录代码

 我来答
匿名用户
2013-09-06
展开全部
写一个操作数据库的类,类中包括对数据库的增、删、改、查操作。然后在要用到的地方调用写的数据库操作类中的方法。 在执行操作时,将所要执行的SQL语句传入写的数据库操作类中,调用就可以了。 private static string conStr = “”;//数据库连接字符串//获得数据库连接
private static SqlConnection connection;
public static SqlConnection Connection
{
get
{
if (connection == null)
{
connection = new SqlConnection(conStr);
connection.Open();
}
else if (connection.State == System.Data.ConnectionState.Closed)
{
connection.Open();
}
else if (connection.State == System.Data.ConnectionState.Broken)
{
connection.Close();
connection.Open();
}
return connection;
}
} //执行增,删,改,返回影响行数 sql 执行的删除语句 type 命令的类型 如果是语句则用 Command.text 如果是存储过程 则用 CommandType.StoredProcedure params 是传入的参数
public static int ExecuteNonQuery(string sql, CommandType type, SqlParameter[] parms)
{
SqlCommand com = new SqlCommand(sql, Connection);
com.CommandType = type;
Parms(com, parms);
return com.ExecuteNonQuery();
} private static void Parms(SqlCommand com, SqlParameter[] param)
{
if (param != null)
{
foreach (SqlParameter p in param)
{
com.Parameters.Add(p);
}
}
} 在类中调用上面地方法string sql = “delete from 数据库表名 where 条件=@Id“; SqlParameter[] parm = new SqlParameter[]
{
new SqlParameter("@Id",传入的参数值 };
SqlHelper.ExecuteNonQuery(sql.ToString(), CommandType.Text, parm);
} 这样就可以了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-09-06
展开全部
string sql_add = string.Format("delete from HuayoUser where 加条件 ); where [id]=" + Convert.ToInt32(Request.QueryString["id"])); 是指定的ID
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-09-06
展开全部
string strCom="delete 表名 where 条件="+条件;
SqlCommand comm = new SqlCommand(strCom, myConnection);
comm.ExecuteNonQuery();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-09-06
展开全部
delete from 数据表 where 你的条件
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式