What are the steps in connecting to database?
Answer Posted / sanket pandit
An alternate, and preferred way, to using the DriverManager class is to use a DataSource object.
This is for SQ L Ans.
1. The data source is registered on the server side, which stores connection information, like: host, port, sid, credentials (optional), driver to use, etc.
2. The application gets a handle on the data source through a JNDI lookup.
3. The DataSource object is a connection factory and you can invoke .getConnection()
One of the reasons it is preferred over the DriverManager is because it is more flexible. The connection in
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is Serialization in .NET? what are the types of Serialization?
What is connection pooling and what is the maximum pool size in ado.net connection string?
What is a column variable?
What is the role of clr?
What is dao and ado?
What are the core objects of ADO.NET?
What is defaultview in datatable?
What is openrowset?
Is entity framework better than ado.net?
Explain the DataAdapter.Update() and DataSetAcceptChanges() methods.
Which provider is used to connect ms access, oracle, etc…?
How do you update a dataset in ado.net?
How do you find the count of records in a dataset?
What is adodb dll?
What does adodb stand for?