CSharp.Net-Informations.com
   Home      .Net Framework      VB.NET      C#                                                                      About


  DataAdapter Select Command - Sql Server

SqlDataAdapter is a part of the ADO.NET Data Provider. SqlDataAdapter provides the communication between the Dataset and the Data Source with the help of SqlConnection Object .The SqlDataAdapter works with the DataSet to provide a disconnected data retrieval mechanism.

The SelectCommand property of the SqlDataAdapter is a Command object that retrieves data from the data source. The Fill method of the DataAdapter is used to populate a DataSet with the results of the SelectCommand . Fill method takes as its arguments a DataSet to be populated, and a DataTable object , or the name of the DataTable to be filled with the rows returned from the SelectCommand. The following C# program shows the SqlDataAdapter using its SelectCommand property to retrieve the data from the Data Source.

         C# Source Code Download           Print Source Code
         DataAdapter Select Command - Sql Server - Download
        
C# Tutorial

using System;
using System.Data;
using System.Data.SqlClient;
using System.Windows.Forms;

namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string connetionString = null;
            SqlConnection connection ;
            SqlDataAdapter adapter = new SqlDataAdapter();
            DataSet ds = new DataSet();
            int i = 0;
            connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password";
            connection = new SqlConnection(connetionString);
            try
            {
                connection.Open();
                adapter.SelectCommand = new SqlCommand("Your SQL Statement Here", connection);
                adapter.Fill(ds);
                connection.Close();
                for (i = 0; i <= ds.Tables[0].Rows.Count - 1; i++)
                {
                    MessageBox.Show(ds.Tables[0].Rows[1].ItemArray[1].ToString());
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
        }
    }
}



CSharp DataAdapter Related Contents
*     How to DataAdapter in Sql Server
*     How to DataAdapter in OLEDB
*     How to DataAdapter Select Command - OLEDB
*     How to DataAdapter Insert Command - Sql Server
*     How to DataAdapter Insert Command - OLEDB
*     How to DataAdapter Update Command - Sql Server
*     How to DataAdapter Update Command - OLEDB
*     How to DataAdapter Delete Command - SQL SERVER
*     How to DataAdapter Delete Command - OLEDB
*     How to DataAdapter CommandBuilder in Sql Server
*     How to DataAdapter CommandBuilder in OLEDB
*     How to DataAdapter DataGridView - Sql Server
*     How to DataAdapter DataGridView - OLEDB


   Home      VB.NET      C#
CSharp Related Topics
*     An overview of Microsoft CSharp
*     C# Language Tutorial
*     C# Statements Tutorial
*     C# Collection Tutorial
*     C# String Tutorial
*     C# File Operations Tutorial
*     C# Excel Tutorial
*     C# Crystal Reports Tutorial
*     CSharp Communication Tutorial
*     C# Ado.Net Tutorial and Source Code
*     C# ADO.NET data Providers Tutorial
*     C# Dataset Tutorial
*     C# DataAdapater Tutorial
*     Csharp DataView Tutorial
*     Csharp Remoting Tutorial
*     C# XML Tutorial
*     C# DataGridView Tutorial
   Home      VB.NET      C#
More Source Code :   
Mail to :  feedback@net-informations.com
  |  Home   |  VB.NET   |  C#   |  SiteMap   |  Terms of Use   |  About   |
net-informations.com (C) 2010
All Rights Reserved. All other trademarks are property of their respective owners.