Skip to main content

How to: Bind a Spreadsheet to an MS SQL Server Database (Part 1)

  • 4 minutes to read

This example demonstrates how to create a data-bound spreadsheet application that retrieves data from an MS SQL Server Database and inserts it into a worksheet. To learn how to extend this example to provide the capability to add, modify or remove data in the data source, refer to the How to: Bind a Spreadsheet to an MS SQL Server Database (Part 2) article.

This tutorial includes the following sections.

Create a Spreadsheet Application

To get started, create a new spreadsheet application using the DevExpress Template Gallery.

  • Start a new project in Visual Studio and select the DevExpress v23.2 Template Gallery item in the invoked New Project dialog.
  • In the DevExpress Template Gallery, select the Spreadsheet Application template in the WinForms Business Solutions group.
  • Specify the project name and click Create Project.

Spreadsheet_DataBinding_CreateApplication

A ready-to-use spreadsheet application with the ribbon UI will be automatically generated.

Connect to a Database

  • In the Visual Studio menu, click Project | Add New Data Source…
  • In the invoked Data Source Configuration Wizard, select Database and then click Next.

    Spreadsheet_DataBinding_ChooseSourceType

  • Select Dataset to specify the type of a database model and click Next.

    Spreadsheet_DataBinding_ChooseDataModel

  • On the next page, click New Connection… to specify the data connection to be used.

    Spreadsheet_DataBinding_NewConnection

  • In the invoked Add Connection dialog, set your data source to Microsoft SQL Server Database File (SqlClient) and specify the database file path. This example uses a connection to the Northwind database (the NWind.mdf file is included in the sample project created based on the current tutorial and available at https://supportcenter.devexpress.com/ticket/details/t472324/spreadsheet-for-winforms-bind-spreadsheetcontrol-to-an-ms-sql-server-database).

    Spreadsheet_DataBinding_AddConnection

    Click OK to apply the changes. In the Data Source Configuration Wizard, click Next, and then click Yes to copy the local data file to the project and modify the connection.

    Spreadsheet_DataBinding_ChooseConnection

  • Click Next on the following page to save the newly created connection string to the configuration file.

    Spreadsheet_DataBinding_SaveConnection

  • On the final wizard page, select the required data fields from the Suppliers table and click Finish.

    Spreadsheet_DataBinding_ChooseView

  • Earlier, you copied the database file to the project folder. Specify that it should be copied to the output directory only if the source file in the project folder is newer than the working database in the output folder, otherwise your data will be overwritten when the project runs next time. Select the NWind.mdf file in the Solution Explorer and set its Copy to Output Directory property to Copy if newer.

    Spreadsheet_DataBinding_CopyToOutputDirectory

Create a Template Document

Create a template document for receiving data from the data source. Each column in the worksheet will contain data from the corresponding field in the Suppliers data table. Hide rows 3 through 10. They are reserved for the future data entry form that will be used for adding new records to the database (for details, refer to the How to: Bind a Spreadsheet to an MS SQL Server Database (Part 2) article).

Spreadsheet_DataBinding_TemplateDocument

Bind the Template to the Data Source

Populate the underlying SuppliersDataTable with data from the database using the Fill method of the SuppliersTableAdapter object.

Bind a cell range on the template worksheet to the created data source using the WorksheetDataBindingCollection.BindToDataSource method.

View Example

using System;
using System.Windows.Forms;
using DevExpress.Spreadsheet;
using SuppliersExample.NWindDataSetTableAdapters;
// ...
        NWindDataSet dataSet;
        SuppliersTableAdapter adapter;

        public Form1() {
            InitializeComponent();
            dataSet = new NWindDataSet();
            adapter = new SuppliersTableAdapter();
        }

        private void Form1_Load(object sender, EventArgs e) {
            // Populate the "Suppliers" data table with data.
            adapter.Fill(dataSet.Suppliers);
            IWorkbook workbook = spreadsheetControl1.Document;
            // Load the template document into the SpreadsheetControl.
            workbook.LoadDocument("Suppliers_template.xlsx");
            Worksheet sheet = workbook.Worksheets[0];
            // Load data from the "Suppliers" data table into the worksheet starting from the cell "B12".
            sheet.DataBindings.BindToDataSource(dataSet.Suppliers, 11, 1);
        }

Result

Run the project. The following image shows the running application.

Spreadsheet_DataBinding_ResultingApplication

See Also