What are the ADO.NET Controls?
Answers were Sorted based on User's Feedback
Answer / edwin
ADO.Net controls are
1/ SqlDataSource
2/ AccessDataSource
3/ ObjectDataSource
4/ DataSetDataSource
5/ XmlDataSource
6/ SiteMapDataSource
Is This Answer Correct ? | 19 Yes | 4 No |
ADO.Net controls are
1/ SqlDataSource
2/ AccessDataSource
3/ ObjectDataSource
4/ DataSetDataSource
5/ XmlDataSource
6/ SiteMapDataSource
Apart from these a new data source is added in ADO.NET 3.5
which is
7.LinqDataSource
Is This Answer Correct ? | 10 Yes | 0 No |
Answer / sreenivaas
* SqlDataSource
* AccessDataSource
* ObjectDataSource
* DataSetDataSource
* XmlDataSource
* SiteMapDataSource
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sonika minocha
1. Connection
2. Data Adapter
3. DataSet (which cotain data tables and data Relations)
Is This Answer Correct ? | 2 Yes | 2 No |
Answer / rea
1.Gridview control
2.DataList control
3.Repeter control
Is This Answer Correct ? | 3 Yes | 16 No |
i have two textboxes one for user name and another for password . i have a table name compare(which contains name,passwod etc.,)my doubt is how compare username textbox with name column and how compare password textbox with passwod column. i want the code
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
Define the executescalar method?
What are all features of ADO.Net?
What is @@rowcount and with small code snippet explain the usage?
Which ado.net object is very fast in getting data from the database?
What are the steps in connecting to database?
What is ado in agriculture?
What is Data Provider?
What are the objects of ado.net?
When we are running the Application, if any errors occur in the Stored Procedure then how will the server identify the errors?
What is executequery?