Results 1 to 4 of 4

Thread: Odbc

  1. #1

    Thread Starter
    Frenzied Member vbgladiator's Avatar
    Join Date
    May 2001
    Posts
    1,950

    Odbc

    Hi,

    I have a MSDE database on 1 computer. I have an Access MDB file on the same computer which has table links to the MSDE database. Therefore, I have a SQL Server DSN on that computer.

    Now, if I want to access that MDB file from a different computer on the network, it tells me that I need a DSN there as well.

    Is there any way that I can do this without having to create a DSN on each workstation that will be accessing the MDB file?

    Thanks,
    Don't anthropomorphize computers -- they hate it

  2. #2
    Fanatic Member
    Join Date
    Sep 2000
    Posts
    770
    You could use a DNS-Less connection so that you dont have to specify a System DNS on each workstation.

    A standard DNS-Less type of connection would like somewhat like this:

    Code:
    Set conn = New ADODB.Connection
    
    conn.Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ="\\workstation\database.mdb"))
    This help?

  3. #3

    Thread Starter
    Frenzied Member vbgladiator's Avatar
    Join Date
    May 2001
    Posts
    1,950
    I have to use DAO though.
    Don't anthropomorphize computers -- they hate it

  4. #4
    Fanatic Member
    Join Date
    Sep 2000
    Posts
    770
    That doesn't matter

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width