Multiple choice asp ado

What is the sequential procedure in working with databases?

  1. Connection string, connection object, close connection string, close connection object

  2. Connection object, connection string, close connection string, close connection object

  3. Connection object, connection string, close connection object, close connection string

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The standard workflow for database interaction involves creating a connection object, assigning a connection string to define the target, opening the connection, performing operations, and then closing the connection and disposing of the object to free resources.