| Back to Questions Page |
| Question |
What providers do you use to connect to oracle database ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Mathur |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
we
will use Oledb provider for oracle  |
0 | Ansu Kumar |
| |
| |
| Answer |
Oracle data provider (namespace=System.Data.OracleClient)  |
0 | Anshuman Sahoo |
| |
| |
| Answer |
we use "DATAPROVIDER "
which cosists $ components
1 Connection ,(Create COnnection)
2. Command ,(Write Command)
3.DataReader
4.DataAdapter  |
0 | Bhupi |
| |
| |
|
|
| |
| Answer |
odbc data provider that available in System.Data.ODBC
namespace.  |
0 | Tarun |
| |
| |
| Question |
What providers does ado.net uses internally ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Mathur |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Data Reader
and
Data Adaptor  |
0 | Shwetha |
| |
| |
| Question |
What is dataset and tell about its features. What are
equivalent methods of previous, next etc. Of ADO in ADO.NET ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Mathur |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Dataset is a collection of Datatables along with their
relations. Dataset is the copy of part/full of the actual
data base stored in the application during execution for
data manipulations.
And there is no equivalent methods to previous and next
methods of ADO as each table is treated as a seperate
objects inside the Dataset. However a particular record can
be retrieved by the "Rows" property of the Data Table.
Eg: DataRow dr = DataSet1.Tables[<TableIndex>].Rows
[<RowIndex>]  |
0 | Vaidyanathan R. |
| |
| |
| Question |
Where do you store connection string ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Mathur |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
we
store
connection string in
web.config file under tab
<appsettings>  |
0 | Ansu Kumar |
| |
| |
| Question |
What does connection string consists of ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Mathur |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
it consist of
data source
database
user name
password  |
0 | Ansu Kamar |
| |
| |
|
| |
|
Back to Questions Page |