TAILIEUCHUNG - Binding a Windows DataGrid to Master-Detail Data

[ Team LiB ] Recipe Binding a Windows DataGrid to Master-Detail Data Problem You need to bind both a parent table and child table within a DataSet to a DataGrid so that the child data is displayed when the parent is expanded, and update the database with edits made to data in both tables. | Team LiB Recipe Binding a Windows DataGrid to Master-Detail Data Problem You need to bind both a parent table and child table within a DataSet to a DataGrid so that the child data is displayed when the parent is expanded and update the database with edits made to data in both tables. Solution Use the approach demonstrated in the sample code. The sample uses eight stored procedures which are shown in Example 7-20 through Example 7-27 GetOrders Used to retrieve a single record from the Orders table if the optional @OrderId parameter is specified or all Orders records if it is not DeleteOrders Used to delete the record specified by the @OrderId parameter from the Orders table InsertOrders Used to insert a record into the Orders table and return the OrderlD identity value for the new record UpdateOrders Used to update all field values for the record in the Orders table specified by the @OrderId input parameter GetOrderDetails Used to retrieve a single record from the Order Details table if the optional @OrderId and @ProductID parameters are specified or all Order Details records if it is not DeleteOrderDetails Used to delete the record specified by the @OrderId and @ProductID parameters from the Order Details table InsertOrderDetails Used to insert a record into the Order Details table UpdateOrderDetails Used to update all field values for the record in the Order Details table specified by the @OrderId and @ProductID input parameters Example 7-20. Stored procedure GetOrders CREATE PROCEDURE GetOrders @OrderID int null AS SET NOCOUNT ON if @OrderID is not null begin select OrderID CustomerID EmployeeID OrderDate RequiredDate ShippedDate ShipVia Freight ShipName ShipAddress ShipCity ShipRegion ShipPostalCode ShipCountry from Orders where OrderID @OrderID return 0 end select OrderID CustomerID EmployeeID OrderDate RequiredDate ShippedDate ShipVia Freight ShipName ShipAddress ShipCity ShipRegion ShipPostalCode ShipCountry from Orders return 0 Example 7-21. Stored .

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.