Home  Fees/Services  Access Examples  Programming Tutorials  Access Download  Articles  Search  Contact  Privacy  Links

SQL Server ODBC Connection Method





Connect String to Access DSN

Connect String to OLEDB Provider for Jet

Connect String to Remote Database

ADO File-DSN Database Connection String

DSN-Less Connection String

SQL/Server ODBC Database Connection Method Example

OLE DB UDL Database Connection String Example

Connection Open Method String Example


Microsoft Activex Data Object - ADO

Using the SQL Server ODBC Connection String Method

Here are two common connection methods for SQL/Server, one for standard security and one for Trusted Connections.

Dim conn as ADODB.Connection
Dim rst as ADODB.Recordset
Dim sql as string

'---------------

Regular/standard security:
Conn.Open "Driver={SQL Server};" & _
                   "Server=your_sqlserver_name;" & _
                   "Database=your_database_name;" & _
                   "UID=username;" & _
                   "PWD=password;"

Trusted connection security:

Conn.Open "Driver={SQL Server};" & _
                   "Server=your_sqlserver_name;" & _
                   "Database=your_database_name;" & _
                   "UID=;" & _
                   "PWD=;"

To have the computer ask for username and password:
Conn.Properties("Prompt") = adPromptAlways
Conn.Open "Driver={SQL Server};" & _
                   "Server=your_sqlserver_name;" & _
                   "Database=your_database_name;" & _

Where:
your_sqlserver_name = Name of the SQL Server instance.

your_database_name = The name of your database, such as Customer_Orders.

username = the username you have identified in the database, or the default 'Admin' username.

password = the password you have setup in the database or nothing  "Pwd=;" for no password.

'--------------  here we use the connection

sql = "select sales_rep, dollars from sales_by_rep_chart"

Set rst = Server.CreateObject("ADODB.Recordset")
rst.Open sql, conn, 3, 3
Set Session("mysession") = rst
rst.movefirst
response.write rst!sales_rep

'--------------

Where mysession is any name for the session.

When done with the recordset don't forget to close it:

Conn.close
set conn=nothing

 










A Blue Claw Database Design Article:

Why Choose Microsoft Access
 





Blue Claw Database Design Downloadable Tutorial:
DoCmd.OpenForm & OpenArgs VBA Example.  





A Blue Claw Database Design Template:

Work Order Administration Software
 





Contact Information

Copyright 2000-2013 Blue Claw Database Design