When DAO connection is used with a connection string does that mean that it completely bypasses the ODBC connector or does it just bypass the step to retrieve the pointer(DSN) to ODBC?
If it does bypass the ODBC Connection, is it similar to OLEDB connection used by ADO?
Edit: Connection string for dsn-less looks like this:
Driver={SQL Server};Server=myServerAddress;Database=myDataBase;
Trusted_Connection=Yes;
An ADO connection using the connection string would look like this
Dim conn As New ADODB.Connection
conn.ConnectionString = "Driver={SQL Server};Server=myServerAddress;Database=myDataBase;
Trusted_Connection=Yes;"
In DAO we can utilize the connection string using:
Dim db As Database
Dim conn As String
conn = "Driver={SQL Server};Server=myServerAddress;Database=myDataBase;Trusted_Connection=Yes;"
set db=opendatabase("",false,false,conn)