|
-
Dec 8th, 2003, 07:57 PM
#1
Thread Starter
Fanatic Member
Within Access 2000, connect to a DSN
From within an Access 2000 database, can you access an external DSN? If so how can I do this? I want to take data from another backend...
-
Dec 9th, 2003, 10:55 AM
#2
Lively Member
Sure ... Ex:
Set MyConnect = New ADODB.Connection
Set MyRecSet = New ADODB.Recordset
MyConnect.CursorLocation = adUseClient
MyConnect.Open "DSN=Billing System;"
-
Dec 9th, 2003, 08:42 PM
#3
Thread Starter
Fanatic Member
Do I paste all of the recordset and connectionstring into a module?
-
Dec 10th, 2003, 08:12 AM
#4
Lively Member
That is up to you ... I cannot tell you how you should design your program.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|