What is sequence of code in retrieving data from database ?

Answer Posted / payal

//In this answer there is sqlserver
/*i write this code in vb.net with windows applications and
use sql server provider*/
//first need namespace

system.data.sqlclient
//need connection,command,connection string

dim sqlcmd as sqlcommand
dim sqlcon as sqlconnection
dom da as sqldataadaptor
dim ds as dataset
dim constr as sting="user
password=sss;datasource=sds;initial catalog=fgf"

/*connection string give all details about database
connection initial catalog means data base name and data
source is sqlserver name,user id and password also*/

//open connection and pass connection string

sqlcon=new sqlconnection(constr)
sqlcon.open()

//create new object of command with new keyword

sqlcmd=new sqlcommand("select * from tablename",sqlcon)

/*data adapter is mediater between the data base and data
set because dataset is work in disconneted mode.*/

da=new sqldataadaptor(sqlcmd)

/*data adapter fetch query to data base and get answer and
fil the dataset using fill*/

da.fill(ds)

/*there is datagird which i use for display data on
form.data from dataset i use this bind to datagrid*/

datagird.datasource=ds.tables("table name")

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the differences between OLEDB and SQLClient Providers?

560


What is ado and dao?

530


What is ado.net full form?

551


What is microsoft ole db provider for sql server?

475


How to copy the contents from one table to another table and how to delete the source table in ado.net?

519






What is a datareader object?

575


What are disadvantages of microsoft-provided data provider classes in ado.net?

498


Explain which name space is used to get assembly details?

522


Which ado.net object is very fast in getting data from the database?

639


How to add a javaScript function in a datagrid?

565


Explain the difference in an abstract class and an interface?

498


How does ado.net work?

490


What is the current version of entity framework?

477


What is the full form of ado?

510


What is ado.net and its features?

498