태그>rollback(총 7개의 글)
'rollback' 관련 최근글
-
- rollback시의 에러를 방지하기
-
프로그래밍 공부하자 by 후냄의 프로그래밍|2017/04/21 09:53
Transaction transaction = null;try { //todo}catch (RuntimeException e) { transaction.rollback(); throw e;} 기본적인 transaction 의 구조이다. 하지만 rollback 시에 에러가 나게 되는 상황까지 check하려면 Transaction transaction = null;tr..
- rollback시의 에러를 방지하기
-
- MSSQL Driver 4 관련 문제
-
저장소 by 어플로잇|2014/05/28 18:02
최근 MSSQL 서버를 205에서 2012로 업그레이드 했다.그러면서 JDBC 드라이버도 sqljdbc4.jar로 같이 업그레이드 했다. 그리고 나서 다음과 같은 얘외가 발생한다.com.microsoft.sqlserver.jdbc.SQLServerException: The server failed to resume the transaction..
- MSSQL Driver 4 관련 문제
-
- Transaction(트랜잭션)
-
La Clef a Verite by Lumos|2012/02/28 15:17
참조: http://www.devholic.net/1000292참조: http://www.postgresql.org/docs/current/static/tutorial-transactions.html참조: http://openframework.or.kr/framework_reference/spring/ver1.2.2/html/transaction.html 사용자가 시스템에 요구-> 시스템 ..
- Transaction(트랜잭션)
-
- SQL 명령어 뷰(view), 트랜잭션(Transaction) 구문
-
케찹만땅 by 케찹만땅|2010/03/10 09:26
CREATE VIEW title_publishers AS (생성)SELECT t.title, t.price, p.pub_name, p.city, p.stateFROM titles AS t INNER JOIN publishers AS pON t.pub_id = p.pub_idSELECT * FROM title_publishers (사용)ALTER VIEW title_publisher..
- SQL 명령어 뷰(view), 트랜잭션(Transaction) 구문
-
- C# Transaction 처리를 위한 예제
-
프러기의 세상여행 by 프러기|2010/03/04 16:31
public void TotalDBExecute(){ string updateSql = "UPDATE Categories SET CategoryName = 'Car' WHERE CategoryID = 10"; string deleteSql = "DELETE Categories WHERE CategoryID = 10"; string conn = @..
- C# Transaction 처리를 위한 예제