conn.beginTrans      '트랜잭션 시작

if err.number = 0 then
    conn.commitTrans      '오류가 없으면 트랜잭션을 수행
  else
    conn.rollbackTrans      '오류가 있으면 트랜잭션을 취소
end if

+ Recent posts