Đang chuẩn bị liên kết để tải về tài liệu:
Combining Data in Tables from Heterogeneous Data Sources

Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ

[ Team LiB ] Recipe 3.6 Combining Data in Tables from Heterogeneous Data Sources Problem You want to create a report that is based on data from tables in more than one data source. Solution Use ad-hoc connector names in SQL statements. | Team LiB Recipe 3.6 Combining Data in Tables from Heterogeneous Data Sources Problem You want to create a report that is based on data from tables in more than one data source. Solution Use ad-hoc connector names in SQL statements. The sample code retrieves data from both a SQL Server table and a Microsoft Access table to create a single result set. Specifically Northwind Order data is retrieved from SQL Server and Northwind Order Details data is retrieved from Access and joined to the Order information. The C code is shown in Example 3-6. Example 3-6. File CombiningDataFromMultipleDatabasesForm.cs Namespaces variables and constants using System using System.Configuration using System.Data using System.Data.SqlClient . . . Fill the table with data from SQL Server and MS Access. String sqlSelect SELECT o.OrderlD o.CustomerlD o.OrderDate od.ProductId od.UnitPrice od.Quantity od.Discount FROM Orders o INNER JOIN OPENROWSET Microsoft.Jet.OLEDB.4.O ConfigurationSettings.AppSettings MsAccess_Database_Filename admin Order Details AS od ON o.OrderlD od.OrderlD ORDER BY o.OrderlD od.ProductID SqlDataAdapter da new SqlDataAdapter sqlSelect ConfigurationSettings.AppSettings Sql_ConnectString DataTable dt new DataTable da.Fill dt Set up and bind a view with data from both tables. DataView dv dt.DefaultView dv.AllowDelete false dv.AllowEdit false dv.AllowNew false dataGrid.DataSource dv Discussion Microsoft SQL Server 2000 and later supports two methods to access data from heterogeneous data sources through OLE DB linked servers and ad hoc connector names. You can refer to linked servers in SQL statements using a four-part name comprised of the names of the linked server the catalog the schema within the catalog and data object. These names are separated with periods. If the data sources are going to be accessed frequently defining them as linked servers rather than through ad hoc connector names as shown in the sample will improve performance. For more information about using

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.