TAILIEUCHUNG - oracle 9i the complete reference phần 6

Các phần xử lý ngoại lệ của một khối PL / SQL là tùy chọn không của các khối PL / SQL đưa ra trước đây trong chương này bao gồm một phần Xử lý ngoại lệ. Tuy nhiên, các ví dụ thể hiện trong chương này đã được dựa trên một tập hợp nhỏ các giá trị đầu vào được biết đến với chế biến rất giới hạn thực hiện. | Chapter 27 An Introduction to PL SQL 507 The Exception Handling section of a PL SQL block is optional none of the PL SQL blocks shown previously in this chapter included an Exception Handling section. However the examples shown in this chapter have been based on a very small set of known input values with very limited processing performed. In the following listing the simple loop for calculating the area of a circle is shown with two modifications shown in bold . A new variable named some_variable is declared in the Declarations section and a calculation to determine the variable s value is created in the Executable Commands section. t declare pi constant NUMBER 9 7 radius INTEGER 5 area NUMBER 14 2 some_variable NUMBER 14 2 begin radius 3 loop some_variable 1 radius-4 area pi power radius 2 insert into AREAS values radius area radius radius 1 exit when area 100 end loop end Because the calculation for some_variable involves division you may encounter a situation in which the calculation attempts to divide by zero an error condition. The first time through the loop the Radius variable with an initial value of 3 is processed and a record is inserted into the AREAS table. The second time through the loop the Radius variable has a value of 4 and the calculation for some_variable encounters an error t declare ERROR at line 1 ORA-01476 divisor is equal to zero ORA-06512 at line 9 Since an error was encountered the first row inserted into AREAS is rolled back and the PL SQL block terminates. You can modify the processing of the error condition by adding an Exception Handling section to the PL SQL block as shown in the following listing. I declare pi constant NUMBER 9 7 radius INTEGER 5 area NUMBER 14 2 some_variable NUMBER 14 2 begin radius 3 508 Part III PL SQL loop some_variable 1 radius-4 area pi power radius 2 insert into AREAS values radius area radius radius 1 exit when area 100 end loop exception when ZERO_DIVIDE then insert into AREAS values 0

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.