Database Access with Visual Basic .NET (3rd Edition)
The Connection Object
The ADO.NET Connection object is very similar to the Connection object that you know and love from classic ADO. Its purpose is straightforward to establish a connection to a specific data source, with a particular user account and password, as specified by a connection string. You can customize the connection by specifying other parameters and values in the connection string. A Command object (or a DataAdapter) can then use this connection to perform desired operations against the data source. Note Unlike the ADO 2.X Connection object, the ADO.NET Connection doesn't have Execute or OpenSchema methods. The ability to execute SQL commands is available only through the Command or DataAdapter objects. The functionality of the OpenSchema method is available by means of the GetOleDbSchemaTable method of the OleDbConnection object.
Although the derived objects OleDbConnection, SqlConnection, and OdbcConnection all implement the same interfaces, there are still differences among them. For example, the connection string formats are not the same. The format for the OleDbConnection is designed to match the standard OLEDB connection string format with only minor exceptions. The format for the OdbcConnection is designed to closely match that of a standard ODBC connection string, but it contains some deviations. The connection string format for the SqlConnection is different from both of the others, as it contains only parameters relevant to SQL Server 7.0 and higher. Furthermore, some objects will add additional properties. For example, the OleDbConnection has a Provider property to specify the OLEDB provider to be used and the OdbcConnection has a Driver property to specify the ODBC driver to be used. The SqlConnection has neither of these properties because the data source type is predetermined (SQL Server). However, the SqlConnection has the PacketSize and WorkstationID properties, which are specific to SQL Server and not supported by the other two types of connections. Okay, let's finally start writing some code! We lead you through each of the core data provider objects in simple, concrete steps. We start with the following simple example and develop it as we go through the chapter.
When you've finished, your form should look something like that shown in Figure 4.2. Figure 4.2. Form1 of the DataProviderObjects sample projectSwitch to the code view of the form and add the following lines of code at the top of the file. Doing so imports the namespaces you'll use as you develop the sample application throughout this chapter: Imports System.Data Imports System.Data.SqlClient Imports System.Data.OleDb Imports Microsoft.Data.Odbc Note the namespace for the generic ADO.NET classes and definitions and the separate namespace for each data provider. Note The Visual Studio editor may not recognize the Microsoft.Data.Odbc namespace, as it is actually an add-on to the base product release. If that's the case, do the following.
If, for some reason, one of the other imported namespaces isn't recognized, you'll need to add a reference to System.Data.dll. Follow steps 2 6, substituting System.Data.dll for Microsoft.Data.Odbc.dll in step 4.
Now add the code shown in Listing 4.1 to the btnConnection to open a connection to the pubs database on SQL Server. This code opens a connection and displays the state of the connection before and after attempting to open the connection. Listing 4.1 Code to open a database connection and display its state
Private Sub btnConnection_Click (ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles _ btnConnection.Click ' Create an instance of an Connection object Dim cnn As SqlConnection = New SqlConnection() ' Set the connection string cnn.ConnectionString = _ "server=localhost;uid=sa;database=pubs" txtResults.Clear() ' display connection state If (cnn.State = System.Data.ConnectionState.Open) Then txtResults.Text = txtResults.Text & "Connection is Open" Else txtResults.Text = txtResults.Text & "Connection is Closed" End If txtResults.Text = txtResults.Text & ControlChars.CrLf ' Open the Connection txtResults.Text = txtResults.Text & "Opening DB connection . . ." _ & ControlChars.CrLf cnn.Open() ' display connection state If (cnn.State = System.Data.ConnectionState.Open) Then txtResults.Text = txtResults.Text & "Connection is Open" Else txtResults.Text = txtResults.Text & "Connection is Closed" End If txtResults.Text = txtResults.Text & ControlChars.CrLf End Sub Tip A useful new feature of VB.NET is the ability to get a text string representation of an enumeration (enum) value automatically, rather than having to write a routine that performs a select-case statement over all the possible values for the enumeration. All enumeration types, which are objects, inherit the ToString method that returns the string corresponding to its current value. In Listing 4.1, you can replace the If-Else statements that display the connection state with a single line. Thus you can replace the lines ' display connection state If (cnn.State = System.Data.ConnectionState.Open) Then txtResults.Text = txtResults.Text & "Connection is Open" Else txtResults.Text = txtResults.Text & "Connection is Closed" End If with ' display connection state txtResults.Text = txtResults.Text & "Connection is" & _ cnn.State.ToString & ControlChars.CrLf
When you run the DataProviderObjects project and click on the Connection button, the textbox should indicate that the connection is closed, being opened, and then open, as shown in Figure 4.3. Figure 4.3. Before and after results of opening a connection, using the code in Listing 4.1Note When writing production code, you need to decide on and implement an error handling strategy for most routines and operations. This strategy should normally be based on the Try-Catch block error handling structure. We don't normally include this code in our examples because our purpose is to focus on database programming concepts, rather than general practices for programming in VB.NET.
|