Oracle執行多條SQL語句

來源:互聯網
上載者:User
如何在.net中一次執行多條SQL語句,在通常情況下除非用預存程序,否則一次只能執行一條SQL語句,假如有如下業務:刪除一個使用者的同時(假設UserID=5),還要刪除使用者在論壇的所有發帖及回帖(保證參考完整性嘛),假定使用者表為Users(含有表示使用者的主鍵UserID),發帖表為Articles(有UserID欄位),回帖表為Replys(有UserID欄位),通常情況分三步:(1),刪除Replys表中所有UserID=5的回帖;(2)刪除Articles表中所有UserID=5的文章;(3)刪除Users表中UserID=5的使用者。
在上面的每一步,先建立一個OracleConnection,然後再建立一個OracleCommand,再執行ExecuteNonQuery()方法,接著OracleCommand調用Dispose()方法,最後OracleConnection調用Close()方法。這個過程在上面的過程中執行3此,大家知道對資料庫的串連操作是很費時間的,有沒有比較好的辦法呢?答案是有的。
那就是利用PS/SQL。begin
delete from Replys where UserId=5;--刪除回帖
delete from Articles where UserId=5;--刪除發帖
delete from Users where UserId=5;--刪除使用者
end;

那麼整個過程可以這麼寫:private void deleteUser(int userId)
        {
            string deleteSql = "begin delete from Replys where UserId={0};delete from Articles where UserId={1};delete from Users where UserId={2};end;";
            deleteSql = String.Format(deleteSql, userId, userId, userId);
            OracleConnection connection = new OracleConnection(connectionString);
            connection.Open();
            OracleCommand cmd = new OracleCommand(deleteSql, connection);
            cmd.Dispose();
            connection.Close();
        }

這樣就能在一個Connection中一次執行完所有操作了,當然,這個代碼中沒有考慮交易處理,實際使用中大家自行考慮酌情添加。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.