URL Atribute Dynamically Changing Query

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default URL Atribute Dynamically Changing Query

    :confused;

    This is a very real life program, but for simplicity terms, I'm going to use
    the ubiquitous Art Gallery example.

    I know a little bit about the whole #URL.attribute# thing, but I'm confused on
    how to integrate it into an actual SQL query (or if I even can). Basically I
    want something like the following:

    SELECT DISTINCTROW LASTNAME, FIRST NAME
    FROM ARTISTS
    ORDER BY URL.ORDERBY

    and if the url is art.cfm?orderby=lastname I want it to sort by the last name,
    and if art.cfm?orderby=firstname I want it to sort by the first name. Again,
    I'm familiar with the concept, but not the syntax to be used in an actual SQL
    query as opposed to just a query output.

    Thanks for any light you can shed on the topic :)

    fidibidabah Guest

  2. Similar Questions and Discussions

    1. Dynamically changing Button class
      You can change a buttons 'upSkin' for exaple with the following code: myButton.setStyle('upSkin', myFunkyClass); where myFunkyClass is created like...
    2. Changing Text Dynamically
      Hello, I would like to know if the text displayed on a webpage changes dynamically.I have 2 drop down menus and based on the options chosen I...
    3. Changing UserControls Dynamically
      I have 2 user controls and I would like to display 1 of them depending on a session variable. I have trie a place holder, but it doesnt seem to...
    4. changing default runlevel dynamically
      How can I choose the runlevel dynamically at startup through lilo menus or otherwise? I want to make a custom runlevel for powersave and such. ...
    5. Changing module dynamically
      Thomas M. Widmann sikyal: I'm not sure how much control you have over the architecture of the whole thing, but this is how I would implement...
  3. #2

    Default Re: URL Atribute Dynamically Changing Query

    I might do something like this:

    SELECT DISTINCTROW LASTNAME, FIRST NAME
    FROM ARTISTS
    <cfif IsDefined("url.orderby")>ORDER BY #URL.ORDERBY#</cfif>

    Phil
    paross1 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