Add a database as a table of information

Ask a Question related to Macromedia Dreamweaver, Design and Development.

  1. #1

    Default Add a database as a table of information

    I have an Access database that I would like to simply add to a table so the
    content of the database can be listed, while exluding some of the columns
    of the table. How would I do this?

    Thanks

    --
    Using M2, Opera's revolutionary e-mail client: [url]http://www.opera.com/m2/[/url]
    fateman@hotmail.com Guest

  2. Similar Questions and Discussions

    1. I can't export table of contents information to pdf bookmarks anymore. Why?
      Just to be sure, have you confirmed that the "Create PDF Bookmarks" option is turned on in the Table of Contents dialog box?
    2. Problem Displaying Table Information - Please Help
      This problem has to do with .ASP and Access database using both DSN an DSNless connections. I have a bunch of websites hosted with a local host...
    3. Import MYSQL table information from .sql file
      If I have created a .sql file in my notepad named tables.sql and laved it in my inetpub folder what commands do I have to enter at the mySQL command...
    4. Help with inserting values from information not found in another table
      I have a tmp_phone that I am comparing to table_phonelistings using the phone field. I then want to insert the values (ac,phone) from the...
    5. Another user has modified the contents of this table or view; the database row you are modifying no longer exists in the database;
      Hi, I am testing a trigger that and I am getting this error message saying "Another user has modified the contents of this table or view; the...
  3. #2

    Default Re: Add a database as a table of information

    Hiyas fateman,
    I'm going to assume that you haven't worked with an access database on a
    webpage before, so if i'm covering things you already know I apologize.
    1. Are you on a Windows server? If so then using access is fairly
    straightforward. You'll need to upload the database, then use dw to create
    a recordset(query) for the database. Use DW's "Application" window to set up
    the database, dsn, test site and recordset. Create a new page using aspVB
    instead of a standard html page. From there it's a step by step process
    using the Application window. Setting up the dsn connection is the toughest
    part. After that, you'll create the recorset, then use it to drop the
    fields you're using into the table cells on your page. The dynamic table
    for the recordsets can go anywhere on the page, and you can include any html
    you want on the rest of the page. Be sure to add a repeating region to the
    cells after you insert the fields and then test it in "live view" to see how
    it will look. When you're happy with the look, you're done!
    2. If you're not on a windows server you'll need to look at other options,
    such as using msSQL to create the dynamic pages.
    Hope this helps,
    Leggy

    <fateman@hotmail.com> wrote in message news:oprr9p2ib2oh3lwx@localhost...
    I have an Access database that I would like to simply add to a table so the
    content of the database can be listed, while exluding some of the columns
    of the table. How would I do this?

    Thanks

    --
    Using M2, Opera's revolutionary e-mail client: [url]http://www.opera.com/m2/[/url]


    leggyredhead Guest

  4. #3

    Default Re: Add a database as a table of information

    Use the 'dynamic table' behaviour in MX

    --

    Jules
    [url]http://www.charon.co.uk[/url]

    Charon Cart 3
    [url]http://www.charon.co.uk/charoncart[/url]

    ICQ 51328805



    [email]fateman@hotmail.com[/email] wrote:
    > I have an Access database that I would like to simply add to a table
    > so the content of the database can be listed, while exluding some of
    > the columns of the table. How would I do this?
    >
    > Thanks

    Julian Roberts Guest

  5. #4

    Default Re: Add a database as a table of information

    You can use ASP/ADO to create a connection to your database and then display
    the recordsets onto a HTML page. Displaying only the fields of the
    recordset you wish is just a matter of listing the desired fields within the
    ASP code. If you have never worked with ASP code before you can find some
    pretty good online tutorials by doing a search for ASP database tutorials on
    google or something similar. There will be lots of listings for tutorials
    that can show you how to create the connection and display the information
    on your page. A book that helped me when I first was learning to code in
    ASP was "Beginning Active Server Pages 3.0" by wrox press. Hope this
    information helps you out.
    -D-


    <fateman@hotmail.com> wrote in message news:oprr9p2ib2oh3lwx@localhost...
    > I have an Access database that I would like to simply add to a table so
    the
    > content of the database can be listed, while exluding some of the columns
    > of the table. How would I do this?
    >
    > Thanks
    >
    > --
    > Using M2, Opera's revolutionary e-mail client: [url]http://www.opera.com/m2/[/url]

    Dwayne Epps Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139