Archive for March 2016

Stored Procedures in ADO.NET

// 1. create a command object identifying         // the stored procedure         SqlCommand cmd  = new SqlCommand(               .
Saturday, 12 March 2016
Posted by Sudhir Chekuri
Tag :

Disconnected Architecture Delete

//Disconnected architecture - delete         //Delete product         private void BtnDeleteProduct_Click(object sender, EventArgs e)        .
Posted by Sudhir Chekuri
Tag :

Disconnected Architecture Update

//Disconnected - update         //Update product name based on the product name under a category         private void BtnUpdateProduct_Click(object sender, EventArgs e)        .
Posted by Sudhir Chekuri
Tag :

Disconnected Architecture Insert

//Disconnected Insert         //Adding product         private void BtnAddProduct_Click(object sender, EventArgs e)         { SqlConnection.
Posted by Sudhir Chekuri
Tag :

Disconnected Architecture Select

//Disconnected - Select         //Populate the datagridview with registered users information         public void GetData()         { SqlConnection.
Posted by Sudhir Chekuri
Tag :

DataSet

DataSet is used in disconnected architecture to store database tables. It can hold multiple tables in it. It is used to store information retrieved by DataAdapter in disconnected architecture. Data adapter will execute the command and fill the dataset.
Posted by Sudhir Chekuri
Tag :

DataAdapter

DataAdapter is used to disconnected architecture to execute all the commands. It is capable of opening the connection to the database server, executing the command, Storing data in DataSet and closing the connection. .
Posted by Sudhir Chekuri
Tag :

Connected Architecture Delete

//Connected architecture - delete         //Delete Category         private void BtnDeleteCategory_Click(object sender, EventArgs e)        .
Posted by Sudhir Chekuri
Tag :

Connected Architecture Update

//Connected Architecture - update         //Update Category         private void BtnUpdateCategory_Click(object sender, EventArgs e)        .
Posted by Sudhir Chekuri
Tag :

Connected Architecture Insert and Select

SQL Command to create SQL table CREATE TABLE [dbo].[Tbl_Data](        [Id] [int] IDENTITY(1,1) NOT NULL,        [UserName] [varchar](50) NULL,       .
Posted by Sudhir Chekuri
Tag :

Followers

Total Pageviews

Powered by Blogger.

- Copyright © 2013 DevStudent - Metrominimalist - Powered by Blogger - Designed by Johanes Djogan -