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

  1. #1

    Default filtering recordset

    I am trying to pull a recordset that has the following items: ID Name
    Description Image1 Image2 Image3 DateAdded Is there anyway that I could pull
    fhe following into my SQL?: ID Name Description
    [url]http://www.url.com/inventory/image1[/url] [url]http://www.url.com/inventory/image2[/url]
    [url]http://www.url.com/inventory/image3[/url] DateAdded Adding the url to the photos? I
    know the exact URL for each. Using ASP, MSAccess, SQL

    WebSlave Guest

  2. Similar Questions and Discussions

    1. PHP Recordset Filtering
      I am making my index page as a blog, and I want the most recent entry to display completely, then have the entries that were previous to display...
    2. filtering by Date in Recordset
      I want to filter displayed records,showing only dates equal to or greater than "today". SELECT * FROM tblEvents WHERE eventDate >= **** this...
    3. Filtering a recordset
      Hi, I have a database query that pulls out records from a business directory database. In the DB are fields like ratings, company name, and...
    4. Help with RecordSet filtering
      Hi all, I have a page with a recordset built that displays the data from my releases database. The purpose of this page is to show people all...
    5. Filtering a recordset with a Checkbox
      I filter a recordset like this WHERE recshow = 'yes' And with text fields in my Access database it works fine but THIS TIME I want to do it with a...
  3. #2

    Default Re: filtering recordset

    How are your tables set up? You can easily do this .. but I can't give you
    an example of what the SQL would look like without knowing the table
    structure you have set up.

    I'm assuming you would display something about all records and then link to
    a detail page that would show all the info you sited about a particular
    record. Something like SELECT Name, Description Image1, Image2, Image3,
    Date Added (or SELECT * if this is everything in the table) where ID =
    MMColParam .. and then set MMColParam equal to the URL parameter of ID in
    the variables.

    Something like that?

    --
    Nancy Gill
    Team Macromedia Volunteer for Dreamweaver MX/UltraDev
    [url]http://www.macromedia.com/go/team/[/url]
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August, 2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004: A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP Web Development

    "WebSlave" <webforumsuser@macromedia.com> wrote in message
    news:d21bhh$g2r$1@forums.macromedia.com...
    > I am trying to pull a recordset that has the following items: ID Name
    > Description Image1 Image2 Image3 DateAdded Is there anyway that I could
    pull
    > fhe following into my SQL?: ID Name Description
    > [url]http://www.url.com/inventory/image1[/url] [url]http://www.url.com/inventory/image2[/url]
    > [url]http://www.url.com/inventory/image3[/url] DateAdded Adding the url to the
    photos? I
    > know the exact URL for each. Using ASP, MSAccess, SQL
    >

    Nancy Gill Guest

  4. #3

    Default Re: filtering recordset

    Nancy, when is your site coming pack online??


    --
    Bill
    Real Estate Web Sites Made Easy
    [url]www.DataPacks.com[/url]


    "Nancy Gill" <nancy@webwish.com> wrote in message
    news:d21cab$h2t$1@forums.macromedia.com...
    > How are your tables set up? You can easily do this .. but I can't give
    > you
    > an example of what the SQL would look like without knowing the table
    > structure you have set up.
    >
    > I'm assuming you would display something about all records and then link
    > to
    > a detail page that would show all the info you sited about a particular
    > record. Something like SELECT Name, Description Image1, Image2, Image3,
    > Date Added (or SELECT * if this is everything in the table) where ID =
    > MMColParam .. and then set MMColParam equal to the URL parameter of ID in
    > the variables.
    >
    > Something like that?
    >
    > --
    > Nancy Gill
    > Team Macromedia Volunteer for Dreamweaver MX/UltraDev
    > [url]http://www.macromedia.com/go/team/[/url]
    > Co-Author: Dreamweaver MX: Instant Troubleshooter (August, 2003)
    > Technical Editor: DMX 2004: The Complete Reference, DMX 2004: A
    > Beginner's
    > Guide, Mastering Macromedia Contribute
    > Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP Web
    > Development
    >
    > "WebSlave" <webforumsuser@macromedia.com> wrote in message
    > news:d21bhh$g2r$1@forums.macromedia.com...
    >> I am trying to pull a recordset that has the following items: ID Name
    >> Description Image1 Image2 Image3 DateAdded Is there anyway that I could
    > pull
    >> fhe following into my SQL?: ID Name Description
    >> [url]http://www.url.com/inventory/image1[/url] [url]http://www.url.com/inventory/image2[/url]
    >> [url]http://www.url.com/inventory/image3[/url] DateAdded Adding the url to the
    > photos? I
    >> know the exact URL for each. Using ASP, MSAccess, SQL
    >>
    >
    >

    BillB Guest

  5. #4

    Default Re: filtering recordset

    All of these items are in the same table, in this order.

    My end goal is to be able to pull the items down to a csv file for upload to another site.

    Any advice?
    WebSlave 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