如何对数据库进行不同的操作

如何对数据库进行不同的操作

本文介绍了如何对数据库进行不同的操作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望在不同的地方对数据库执行不同的命令文本,如果其中一个操作没有完成回滚另一个命令

i want do differnt command text on database in different place , if one of this operation not complete rollback another command

推荐答案


using (SqlConnection Conn = new SqlConnection(_ConnectionString))
{
    try
    {
        Conn.Open();
        SqlTransaction Trans = Conn.BeginTransaction();

        try
        {
            using (SqlCommand Com = new SqlCommand(ComText, Conn))
            {
                /* DB work */
            }
        }
        catch (Exception TransEx)
        {
            Trans.Rollback();
            return -1;
        }
    }
    catch (Exception Ex)
    {
        return -1;
    }
}


这篇关于如何对数据库进行不同的操作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 23:11