Results 1 to 3 of 3

Thread: Web database

  1. #1
    Join Date
    May 2003
    Posts
    6

    Web database

    Hi ,

    I would like to connect to a web database using ASP? (ie) say I want to access some data of site xyz.com, what information will I need basically?

    Thanks,
    Lakshmi.

  2. #2
    Join Date
    Sep 2002
    Location
    Fantasy
    Posts
    4,254
    You need the databasename, Type of RDBMS, userid and password to access a database from a asp.

    The following link has reference for many different kinds of databases.

    refer.
    http://www.able-consulting.com/ADO_Conn.htm

    ASP Reference:
    www.asp101.com
    www.asp.net

  3. #3
    Join Date
    Jun 2003
    Posts
    17

    Lakshimi,

    What you want to know actually? You want code for access WEBDATABASE ?
    If I am correct then it is the code for access your web database (ACCESS):

    Dim conn

    Set conn = Server.CreateObject("ADODB.Connection")

    conn.Open "Provider="Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("yourDBDirectory")

    HTH,
    -mugun

Posting Permissions

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