Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
Giới thiệu
Đăng ký
Đăng nhập
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
Thông tin
Điều khoản sử dụng
Quy định bảo mật
Quy chế hoạt động
Chính sách bản quyền
Giới thiệu
Đăng ký
Đăng nhập
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
Beginning C# 2005 Databases From Novice to Professional phần 8
Đang chuẩn bị liên kết để tải về tài liệu:
Beginning C# 2005 Databases From Novice to Professional phần 8
Khánh Thi (Thy)
45
52
pdf
Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Nó sẽ được đánh giá cao bất thường để bỏ lỡ thiết lập thuộc tính CommandText. Tuy nhiên, đây là một cách thiết thực để gây ra một ngoại lệ ADO.NET. Bạn chỉ rõ các lệnh cho một cuộc gọi thủ tục lưu trữ, nhưng bạn không chỉ định các thủ tục lưu trữ để gọi | CHAPTER 13 HANDLING EXCEPTIONS 339 10. Run the program with Ctrl F5. Click the ADO.NET Exception-1 button and you ll see the message box shown in Figure 13-3. Click OK. Figure 13-3. Handled exception message 11. When the message box in Figure 13-4 appears click OK then close the window. Figure 13-4. Message from finally block How It Works It would be highly unusual to miss setting the CommandText property. However this is an expedient way to cause an ADO.NET exception. You specify the command for a stored procedure call but you don t specify the stored procedure to call Specify that a stored procedure is to be executed cmd.CommandType CommandType.StoredProcedure Deliberately fail to specify the procedure cmd.CommandText sp_Select_AllEmployees so when you call the ExecuteReader method you get an exception as shown in Figure 13-2. Though it s an unhandled exception it still gives you an accurate diagnostic ExecuteReader CommandText property has not been intiailized. and it even gives you the option to continue or quit. However leaving this decision to users isn t a very good idea. After seeing what happens without handling the exception you place the call in a try block 340 CHAPTER 13 HANDLING EXCEPTIONS try Open connection conn.Open Create data reader SqlDataReader dr cmd.ExecuteReader Close reader dr.Close To handle the exception yourself you code two catch clauses catch System.Data.SqlClient.SqlException ex string str str Source ex.Source str n Exception Message ex.Message MessageBox.Show str Database Exception catch System.Exception ex string str str Source ex.Source str n Exception Message ex.Message MessageBox.Show str Non-Database Exception In the first catch clause you specify a database exception type. The second catch clause which produces the message box in Figure 13-3 is a generic block that catches all types of exceptions. Note the caption of the message box in this catch block. It says Non-Database Exception. Although you may think that a failure to .
TÀI LIỆU LIÊN QUAN
Beginning C# 2005 Databases
Beginning C# 2005 Databases PHẦN 1
Beginning C# 2005 Databases PHẦN 2
Beginning C# 2005 Databases PHẦN 3
Beginning C# 2005 Databases PHẦN 4
Beginning C# 2005 Databases PHẦN 5
Beginning C# 2005 Databases PHẦN 6
Beginning C# 2005 Databases PHẦN 7
Beginning C# 2005 Databases PHẦN 8
Beginning C# 2005 Databases PHẦN 9