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

UDL Data Link Connection





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


UDL Data Link Tools Microsoft Activex Data Object

This example shows the method for the OLE DB Data Link database connection string.
Dim conn as DB.Connection
Dim rst as DB.Recordset
Dim sql as string
'---------------

Absolute path to the UDL file:
Conn.Open "File Name=UDL_filename.udl;"

Where:
UDL_filename = The name of the Universal Data Link file as created below:

To create a Universal Data Link:

Create an empty text file using a text editor, such as notepad.  Save the file with a .udl extension.  Then, right click on the file and select Properties.  Fill in the connection specification fields.  Here is a snapshot of the 'connection' tab of the UDL connection properties editor screen:

UDL Database Connection Strings



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

sql = "select sales_rep, dollars from sales_by_rep_chart"

Set rst = Server.CreateObject("DB.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:

Access Form Design Help
 





Blue Claw Database Design Downloadable Tutorial:
Send Email Microsoft Access Tutorial Download (Advanced)  





A Blue Claw Database Design Template:

Student Grant Program Administration Software
 





Contact Information

Copyright 2000-2012 Blue Claw Database Design, LLC