Danh mục

Microsoft ADO .NET 4 Step by Step - p 9

Số trang: 10      Loại file: pdf      Dung lượng: 550.45 KB      Lượt xem: 16      Lượt tải: 0    
tailieu_vip

Xem trước 2 trang đầu tiên của tài liệu này:

Thông tin tài liệu:

56 Microsoft ADO .NET 4 Step by Step 3. Locate the CustomerAccounts_RowChanging event handler, which is called whenever any value in a row changes within the CustomerAccounts table. Add the following code, which checks for valid data involving multiple columns: If (e.Row.HasVersion(DataRowVersion.Proposed) = True) Then If (CBool(e.Row("Active", DataRowVersion.Proposed)) = True) And (IsDBNull(e.Row("StartDate", DataRowVersion.Proposed)) = True) Then e.Row.RowError = "Active accounts must have a valid start date." End If End If 4. Run the program. Use its features to create, edit, and delete data rows. When you attempt to provide invalid data—incorrect data types, violations of business rules, duplicate account names—the program provides the appropriate...
Nội dung trích xuất từ tài liệu:
Microsoft ADO .NET 4 Step by Step - p 9

Tài liệu được xem nhiều: