Finding Data : DataSet « Database ADO.net « C# / C Sharp






Finding Data




using System;
using System.Data;
using System.Data.SqlClient; 
using System.Collections.Generic;
using System.Text;

class Program {
    static void Main(string[] args) {
        SqlConnection thisConnection = new SqlConnection(
             @"Server=(local)\sqlexpress;Integrated Security=True;" +
             "Database=northwind");
        SqlDataAdapter thisAdapter = new SqlDataAdapter("SELECT CustomerID, CompanyName FROM Customers", thisConnection);
        SqlCommandBuilder thisBuilder = new SqlCommandBuilder(thisAdapter);

        DataSet thisDataSet = new DataSet();
        thisAdapter.Fill(thisDataSet, "Customers");
        Console.WriteLine("# rows before change: {0}",thisDataSet.Tables["Customers"].Rows.Count);

        DataColumn[] keys = new DataColumn[1];
        keys[0] = thisDataSet.Tables["Customers"].Columns["CustomerID"];
        thisDataSet.Tables["Customers"].PrimaryKey = keys;

        DataRow findRow = thisDataSet.Tables["Customers"].Rows.Find("AAA");

        if (findRow == null) {
            DataRow thisRow = thisDataSet.Tables["Customers"].NewRow();
            thisRow["CustomerID"] = "AAA";
            thisRow["CompanyName"] = "AAA Ltd.";
            thisDataSet.Tables["Customers"].Rows.Add(thisRow);
            if ((findRow = thisDataSet.Tables["Customers"].Rows.Find("AAA")) != null) {
                Console.WriteLine("added");
            }
        } else {
            Console.WriteLine("AAA already present in database");
        }
        thisAdapter.Update(thisDataSet, "Customers");
        Console.WriteLine("# rows after change: {0}",thisDataSet.Tables["Customers"].Rows.Count);
        thisConnection.Close();
    }
}

           
       








Related examples in the same category

1.Print DataSet out
2.How to perform a SELECT statement and store the returned rows in a DataSet objectHow to perform a SELECT statement and store the returned rows in a DataSet object
3.Populate a DataSet object using a SELECT statementPopulate a DataSet object using a SELECT statement
4.Populate a DataSet object with multiple DataTable objects
5.Populate a DataSet with multiple DataTable objects using multiple SELECT statements
6.Use the Merge() method
7.DataSet Delete
8.For each row in DataSet, reference the column data by column name
9.DataSet Read
10.ReadXml
11.how to write and read XML files
12.Open the XML file and read into a DataSet
13.Populate a DataSet object with a range of rows from a SELECT statement
14.Using Datasets
15.Using Multi Tabled Datasets
16.Read data from DataSet
17.Populate a DataSet object with multiple DataTable objects by changing the CommandText property of a DataAdapter object's SelectCommand
18.Use DataViewManager to wrap DataSet