The following steps outline how to create a connection that does not
require an ODBC datasource. The connection will be called CONNECT1, and it
accesses a SQL Server backend with the following attributes:
Server Name = SQL1
Logon User ID = USER
Logon Password = password
DATABASE = pubs
You can create the connection either programmatically or using the
Connection Designer. Both of these methods will be addressed.
Creating the Connection Programmatically
- Open a database in which to store the connection.
- Enter the following command in the Command window:
CREATE CONNECTION CONNECT1 CONNSTRING "DRIVER={SQL Server};
SERVER=SQL1;UID=USER;PWD=password;DATABASE=pubs"
NOTE: You should enter this command on one line.
Creating the Connection Using the Connection Designer
- Open a database in which to store the connection.
- From the File menu, click New.
- Specify a new connection.
- In the Connection Designer, select the "Connection String" option
button.
- Enter the following for the Connect String:
DRIVER={SQL Server};SERVER=SQL1;UID=USER;PWD=password;DATABASE=pubs
- Close the Connection Designer, and save the connection as CONNECT1.
To test the connection, enter the following in the Command window:
A return value greater than zero indicates a successful connection.