·¢ÐÅÈË: qcrsoft(ÍøÆ¦) 
ÕûÀíÈË: qcrsoft(2002-05-13 01:06:53), Õ¾ÄÚÐżþ
 | 
 
 
OLE DB Provider for ODBC Databases 
 ¡¡ 
 For Access (Jet):
 
 oConn.Open "Provider=MSDASQL;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Driver={Microsoft Access Driver (*.mdb)};" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Dbq=c:\somepath\mydb.mdb;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Uid=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Pwd=myPassword;"
 
 For SQL Server:
 
 oConn.Open "Provider=MSDASQL;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Driver={SQL Server};" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Server=myServerName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Database=myDatabaseName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Uid=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Pwd=myPassword;"
 
 For more information, see: Microsoft OLE DB Provider for ODBC
 
 
 OLE DB Provider for Oracle (from Microsoft) 
 ¡¡ 
 oConn.Open "Provider=msdaora;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=MyOracleDB;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "User Id=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password=myPassword;"
 
 For more information, see: Microsoft OLE DB Provider for Oracle
 
 
 OLE DB Provider for Oracle (from Oracle) 
 ¡¡ 
 For Standard Security:
 
 oConn.Open "Provider=OraOLEDB.Oracle;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=MyOracleDB;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "User Id=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password=myPassword;"
 
 For a Trusted Connection:
 
 oConn.Open "Provider=OraOLEDB.Oracle;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=MyOracleDB;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "User Id=/;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password=;"
 ' Or
 
 oConn.Open "Provider=OraOLEDB.Oracle;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=MyOracleDB;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "OSAuthent=1;"
 ¡¡
 
 Note: "Data Source=" must be set to the appropriate Net8 name which is known to the naming method in use. For example, for Local Naming, it is the alias in the tnsnames.ora file; for Oracle Names, it is the Net8 Service Name. 
 
 For more information, see: Connecting to an Oracle Database
 (Note, if you get a Logon dialog, then click Cancel, then perform a one-time free signup with Oracle's TechNet system)
 
 
 OLE DB Provider for Simple Provider 
 ¡¡ 
 The Microsoft OLE DB Simple Provider (OSP) allows ADO to access any data for which a provider has
 been written using the OLE DB Simple Provider Toolkit. Simple providers are intended to access data
 sources that require only fundamental OLE DB support, such as in-memory arrays or XML documents.
 
 OSP in MDAC 2.6 has been enhanced to support opening hierarchical ADO Recordsets over arbitrary
 XML files. These XML files may contain the ADO XML persistence schema, but it is not required. This
 has been implemented by connecting the OSP to the MSXML2.DLL, therefore MSXML2.DLL or newer is
 required.
 
 oConn.Open "Provider=MSDAOSP;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=MSXML2.DSOControl.2.6;"
 
 oRS.Open "http://WebServer/VirtualRoot/MyXMLFile.xml", oConn
 
 
 For more information, see: Microsoft OLE DB Simple Provider
 
 
 OLE DB Provider for SQL Server 
 ¡¡ 
 For Standard Security:
 
 oConn.Open "Provider=sqloledb;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=myServerName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Initial Catalog=myDatabaseName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "User Id=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password=myPassword;"
 
 For a Trusted Connection:
 
 oConn.Open "Provider=sqloledb;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=myServerName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Initial Catalog=myDatabaseName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Integrated Security=SSPI;"
 
 To connect to a "Named Instance" (SQL Server 2000)
 
 oConn.Open "Provider=sqloledb;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=myServerName\Inst2;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Initial Catalog=myDatabaseName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "User Id=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password=myPassword;"
 
 To Prompt user for username and password:
 
 oConn.Provider = "sqloledb"
 oConn.Properties("Prompt") = adPromptAlways
 oConn.Open "Data Source=myServerName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Initial Catalog=myDatabaseName;" 
 
 To connect via an IP address:
 
 oConn.Open "Provider=sqloledb;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=xxx.xxx.xxx.xxx,1433;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Network Library=DBMSSOCN;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Initial Catalog=myDatabaseName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "User ID=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password=myPassword;" 
 
 Note: 
 - xxx.xxx.xxx.xxx is an IP address
 - "Network Library=DBMSSOCN" tells OLE DB to use TCP/IP rather than Named Pipes (Q238949)
 - 1433 is the default port number for SQL Server
 - You can also add "Encrypt=yes" for encryption 
 
 For more information, see: Microsoft OLE DB Provider for SQL Server
 
 
 
 Remote Data Service (RDS) Connections
 The following examples show how to connect to a remote database using the RDS Data Control.
 When using the RDS DataControl's Server/SQL/Connect properties, the RDS DataControl uses the 
 RDS DataFactory on the remote server. If you use the RDS DataControl's URL property, 
 then the RDS DataFactory is not used at all.
 
 WARNING: The RDS DataFactory can be a major security hole if not setup and configured correctly!
 For more information, see RDS FAQ #24 
 
 RDS DataControl - Connect Property 
 ¡¡ 
 With the RDS default handler disabled (not recommend due to security risks):
 
 With oRdc
 ¡¡ .Server = "http://carl2"
 ¡¡ .Sql = "Select * From Authors Where State = 'CA'"
 ¡¡ .Connect = "Provider=sqloledb;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=(local);" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Initial Catalog=pubs;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "User Id=sa;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password=;"
 ¡¡ .Refresh
 End With
 
 With the RDS default handler enabled (recommend):
 
 With oRdc
 ¡¡ .Server = "http://carl2"
 ¡¡ .Handler = "MSDFMAP.Handler"
 ¡¡ .Connect = "Data Source=MyConnectTag;"
 ¡¡ .Sql = "MySQLTag(""CA"")"
 ¡¡ .Refresh
 End With 
 
 The corresponding CONNECT and SQL sections in the default handler \WINNT\MSDFMAP.INI file would be:
 
 [connect MyConnectTag]
 Access = ReadWrite
 Connect = "Provider=sqloledb;Data Source=(local);Initial Catalog=pubs;User Id=sa;Password=;" 
 
 [sql MySQLTag]
 Sql = "Select * From Authors Where State = '?'"
 
 For more information about the RDS Default Handler, see:
 Q243245, Q230680, and RDS Customization Handler Microsoft articles
 
 
 RDS DataControl - URL Property 
 ¡¡ 
 To get records from a remote database:
 
 With oRdc
 ¡¡ .URL = "http://carlp0/Authors_GetByState.asp?state=CA"
 ¡¡ .Refresh
 End With
 
 To save, set the URL property to an ASP web page:
 
 With oRdc
 ¡¡ .URL = "http://carlp0/rdsdatacontrol/Authors_Save.asp"
 ¡¡ .SubmitChanges
 End With
 
 For more information, see: RDS URL Property
 
 
 
 ADO URL Connections
 ADO 2.5+ allows you to open up a Recordset based on XML returned from an ASP file over HTTP.¡¡
 This feature doesn't use RDS at all.
 
 ADO Recordset 
 ¡¡ 
 To get records from a remote database:
 
 oRs.Open "http://carlp0/Authors_GetByState.asp?state=CA", , _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ adOpenStatic, adLockBatchOptimistic 
 
 To save changes, you must use the MSXML's XMLHTTP object to POST back the updated XML.¡¡
 The Recordset's Update and UpdateBatch methods will not work in this case.
 
 ' Save Recordset into Stream
 Set oStm = New ADODB.Stream
 oRs.Save oStm, adPersistXML
 
 ' Use MSXML's XMLHTTP object to open ASP and post a XML stream
 Set oXMLHTTP = New MSXML2.XMLHTTP30
 oXMLHTTP.Open "POST", "http://carlp0/Authors_Save.asp", False
 oXMLHTTP.Send oStm.ReadText
 
 ' If an error occurred
 If oXMLHTTP.Status = 500 Then
 ¡¡ Debug.Print oXMLHTTP.statusText
 End If
 
 For more information, see: ADO Recordset's Open Method
 
 
 
 MS Remote Provider Connections
 The following connections strings use Microsoft's remote provider (MS Remote). The MS Remote
 provider tells ADO to communicate with the remote server (via the RDS DataFactory) and to use 
 the remote provider that is installed on the remote server.
 
 WARNING: The RDS DataFactory can be a major security hole if not setup and configured correctly!¡¡
 For more information, see RDS FAQ #24 
 ¡¡¡¡
 
 MS Remote - Access (Jet) 
 ¡¡ 
 If you want to use an ODBC DSN on the remote machine:
 
 oConn.Open "Provider=MS Remote;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Remote Server=http://myServerName;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Remote Provider=MSDASQL;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "DSN=AdvWorks;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Uid=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Pwd=myPassword;" 
 
 If you want to use an OLE DB Provider on the remote machine:
 
 oConn.Open "Provider=MS Remote;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Remote Server=http://myServerName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Remote Provider=Microsoft.Jet.OLEDB.4.0;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=c:\somepath\mydb.mdb;", _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "admin", ""
 
 If you want to use an OLE DB Provider on the remote machine (via RDS DataFactory Default Handler):
 
 oConn.Open "Provider=MS Remote;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Remote Server=http://myServerName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Handler=MSDFMAP.Handler;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=MyAdvworksConn;"
 
 The corresponding entry in the \winnt\Msdfmap.ini file would be:
 
 [connect MyAdvworksConn]
 Access = ReadWrite
 Connect = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=mydb.mdb;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "User Id=admin;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password=;"
 ¡¡
 
 MS Remote - SQL Server 
 ¡¡ 
 If you want to use an ODBC DSN on the remote machine:
 
 oConn.Open "Provider=MS Remote;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Remote Server=http://myServerName;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Remote Provider=MSDASQL;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "DSN=myDatabaseName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Uid=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Pwd=myPassword;" 
 
 If you want to use an OLE DB Provider on the remote machine:
 
 oConn.Open "Provider=MS Remote;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Remote Server=http://myServerName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Remote Provider=SQLOLEDB;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=myServerName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Initial Catalog=myDatabaseName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "User ID=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password=myPassword;"
 
 If you want to use an OLE DB Provider on the remote machine (via RDS DataFactory Default Handler):
 
 oConn.Open "Provider=MS Remote;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ ¡¡"Remote Server=http://myServerName;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ ¡¡"Handler=MSDFMAP.Handler;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ ¡¡"Data Source=MyPubsConn;" 
 
 The corresponding entry in the \winnt\Msdfmap.ini file would be:
 
 [connect MyPubsConn]
 Access = ReadWrite
 Connect = "Provider=SQLOLEDB;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=myServerName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Initial Catalog=myDatabaseName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "User ID=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password=myPassword;"
 
 For more information, see: Microsoft OLE DB Remoting Provider¡¡ and Q240838
 
 
 
 Data Shape Provider Connections
 MS DataShape - SQL Server 
 ¡¡ 
 oConn.Open "Provider=MSDataShape;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Provider=SQLOLEDB;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=mySQLServerName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Initial Catalog=myDatabase;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "User ID=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password=myPassword;"
 
 Then use a Shape command with SQL strings:
 sSQL = "SHAPE {select * from authors} " & _
 ¡¡¡¡¡¡¡¡¡¡ "APPEND ({select * from titleauthor} AS chapter " & _
 ¡¡¡¡¡¡¡¡¡¡ "RELATE au_id TO au_id)"
 
 Or use a Shape command that calls Stored Procedures:
 sSQL = "SHAPE {exec spAuthors_LoadAll} " & _
 ¡¡¡¡¡¡¡¡¡¡ "APPEND ({exec spTitleAuthor_LoadAll} AS chapter " & _
 ¡¡¡¡¡¡¡¡¡¡ "RELATE au_id TO au_id)"
 
 For more information, see: Microsoft Data Shaping Service for OLE DB and Q288409 
 
 
 
 .NET Managed Provider Connections
 SQL Client .NET Managed Provider (System.Data.SqlClient) 
 ¡¡ 
 The SQL Client .NET Managed Provide allows you to connect to a Microsoft SQL Server 7.0 
 or 2000 database. For Microsoft SQL Server 6.0 or earlier, use the OLE DB .NET Data Provider 
 with the "SQL Server OLE DB Provider" (SQLOLEDB).
 
 Dim oSQLConnection As SqlClient.SqlConnection
 Dim sConnString As String
 
 sConnString = "Data Source=(local);" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Initial Catalog=NorthWind;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Integrated Security=SSPI;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Pooling=True;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Min Pool Size=10;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Max Pool Size=50;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Connection Lifetime=30;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Connection Reset=True;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Enlist=True;"
 oSQLConnection = New SqlClient.SqlConnection(sConnString)
 oSQLConnection.Open()
 
 For more information, see: System.Data.SQL Namespace and .NET Data Providers
 Note: 'SQL' namespace got renamed to 'SQLClient'
 
 
 OLE DB .NET Managed Provider (System.Data.OleDb) 
 ¡¡ 
 The OLE DB .NET Data Provider uses native OLE DB through COM interop to enable data access.¡¡
 To use the OLE DB .NET Data Provider, you must also use an OLE DB provider (e.g. SQLOLEDB,
 MSDAORA, or Microsoft.JET.OLEDB.4.0).
 
 For SQL Server OLE DB Provider (for SQL Server 6.0 or earlier)
 
 Dim oOleDbConnection As OleDb.OleDbConnection
 Dim sConnString As String
 
 sConnString = "Provider=sqloledb;" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=myServerName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ ¡¡ "Initial Catalog=myDatabaseName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ ¡¡ "User Id=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password=myPassword;" 
 oOleDbConnection = New OleDb.OleDbConnection(sConnString)
 oOleDbConnection.Open()
 
 For JET OLE DB Provider:
 
 Dim oOleDbConnection As OleDb.OleDbConnection
 Dim sConnString As String
 
 sConnString = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Data Source=C:\Work\nwind.mdb;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "User ID=Admin;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Password="";" 
 oOleDbConnection = New OleDb.OleDbConnection(sConnString)
 oOleDbConnection.Open()
 
 For more information, see: System.Data.OleDb Namespace and .NET Data Providers
 Note: 'ADO' namespace got renamed to 'OleDb'
 
 
 ODBC .NET Managed Provider (System.Data.ODBC) 
 ¡¡ 
 The ODBC .NET Data Provider is an add-on component to the .NET Framework SDK Beta 2. 
 It provides access to native ODBC drivers the same way the OLE DB .NET Data Provider 
 provides access to native OLE DB providers.
 
 For SQL Server ODBC Driver:
 
 Dim oODBCConnection As Odbc.OdbcConnection
 Dim sConnString As String
 
 ' Create and open a new ODBC Connection
 sConnString = "Driver={SQL Server};" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Server=MySQLServerName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Database=MyDatabaseName;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Uid=MyUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Pwd=MyPassword;"
 
 oODBCConnection = New Odbc.OdbcConnection(sConnString)
 oODBCConnection.Open()
 
 For Oracle ODBC Driver:
 
 Dim oODBCConnection As Odbc.OdbcConnection
 Dim sConnString As String
 
 ' Create and open a new ODBC Connection
 sConnString = "Driver={Microsoft ODBC for Oracle};" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Server=OracleServer.world;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Uid=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Pwd=myPassword;"
 
 oODBCConnection = New Odbc.OdbcConnection(sConnString)
 oODBCConnection.Open()
 
 For Access (JET) ODBC Driver:
 
 Dim oODBCConnection As Odbc.OdbcConnection
 Dim sConnString As String
 
 ' Create and open a new ODBC Connection
 sConnString = "Driver={Microsoft Access Driver (*.mdb)};" & _ 
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Dbq=c:\somepath\mydb.mdb;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Uid=Admin;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Pwd=;"
 
 oODBCConnection = New Odbc.OdbcConnection(sConnString)
 oODBCConnection.Open()
 
 For all other ODBC Drivers:
 
 Dim oODBCConnection As Odbc.OdbcConnection
 Dim sConnString As String
 
 ' Create and open a new ODBC Connection
 sConnString = "Dsn=myDsn;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Uid=myUsername;" & _
 ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ "Pwd=myPassword;"
 
 oODBCConnection = New Odbc.OdbcConnection(sConnString)
 oODBCConnection.Open()
 
  | 
 
 
 |