Announcement

Collapse
No announcement yet.

MS Access connection string

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • MS Access connection string

    What is the connection to get to an access database in the cgi-bin directory ?

  • #2
    Originally posted by ROBkh690 View Post
    What is the connection to get to an access database in the cgi-bin directory ?
    ODBC:
    Driver={Microsoft Access Driver (*.mdb)};Dbq=C:\path-to-cgi\mydatabase.mdb;Uid=Admin;Pwd=;

    OLE DB, OleDbConnection:
    Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\path-to-cgi\mydatabase.mdb;User Id=admin;Password=;
    Kind regards,
    Jack Daniel.

    Cloud Hosting || Managed Dedicated Server || Webhosting UK Knowledgebase

    Comment

    Working...
    X