ADO.NET ObjectsSqlCommandSqlConnectionSqlDataReaderSqlDataAdapterDataTableDataSetDataView
ADO.NET Objects   Connection helps you identifyDatabase ServerDatabase Name PasswordUserNameSqlConnectionDatabase
ADO.NET Objects   SqlConnection con= new SqlConnection (“Data Source=(local);Initial                                          Catalog=Master; Integrated Security=SSPI”);   SqlConnection con= new SqlConnection (“Server=<Servername>;Data    Source=(local);uid=<SqlServerUserId>;Pwd=<SqlServer Password>”);
ADO.NET Objects  Various methods available in SqlConnection Object
Open()
 Opens the connection to our database
Close()
 Closes the database connection

ADO.NETObjects