About ADO and its objects ?
Answer / shiva
ACTIVEX DATAOBJECTS FOR .NET:
it is specification for interact with database or XML doc..
4 types obj:
Connection Obj,
Command Obj,
DataReader Obj,
DataAdapter obj......
Is This Answer Correct ? | 6 Yes | 0 No |
What is the provider and namespaces being used to access oracle database?
What is the role of data provider in ado.net?
What is the difference between connected and disconnected environment?
What is difference in record set and dataset?
how you will deal result set? How do you sort a dataset?If a dataset contains 100 rows, how to fetch rows between 5 and 15 only?
OleDbDataAdapter ole=new OleDbDataAdapter(new OleDbCommand ("select * from login",oleDbConnection1)); OleDbCommandBuilder cmd=new OleDbCommandBuilder(ole); ole.Fill(dataSet11,"login"); DataRow drow=dataSet11.Tables ["login"].NewRow(); drow[0]=textBox1.Text; drow[1]=textBox2.Text; drow[2]=textBox3.Text; dataSet11.Tables["login"].Rows.Add (drow); ole.UpdateCommand=cmd.GetUpdateCommand(); ole.Update(dataSet11,"login"); MessageBox.Show("one row added"); this gives exception.how to solve it
How does entity framework work?
What does sqldatareader return?
What is the Magic Tables in Sqlserver2000?
What are the Different layers in ADO.Net?
how we can fire event in databound coulm in datagfrid withot using button?
What is the return type of executescalar?