Data Access (How Do I in Visual J# Express) 

This page links to help on widely used J# data tasks. To view other categories of popular tasks covered in Help, see How Do I in Visual J# Express.

Connecting to Databases

  • Connecting to a SQL Express Database
    Describes how connecting your application to data in Visual Studio is simplified by using the Data Source Configuration Wizard. After you complete the wizard, data is available in the Data Sources window for dragging onto Windows Forms.

Displaying Data

Querying

Editing Data

  • Manipulating Data in a DataTable
    Shows that after creating a DataTable in a DataSet, you can perform the same activities that you would when using a table in a database.
  • Adding Data to a Table
    Describes how, after you create a DataTable and define its structure using columns and constraints, you can add new rows of data to the table.
  • Viewing Data in a Table
    Describes how using DataTable, you can view subsets of data depending on the search criteria you specify.
  • Manipulating Data in a DataTable
    Explains that after creating a DataTable in a DataSet, you can perform the same activities that you would when using a table in a database.
  • How to: Edit Rows in a DataTable
    Describes how, in order to edit an existing row in a DataTable, you need to locate the DataRow you want to edit, and then assign the updated values to the desired columns.

Stored Procedures

See Also

Reference

How Do I in Visual J# Express