ColdFusion and MS Access

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

  1. #1

    Default ColdFusion and MS Access

    I am trying to dynamically create menus using links stored in an Access
    database, the problem is I can only get this to work using the Access field
    type as a 'memo' and having the value as shown below. How do you properly use
    the 'hyperlink' datafield so that when I query the DB in the CFM file it will
    display the same?

    <a href = "phone.cfm">Add Phone Number</a>

    Captain Ru Guest

  2. Similar Questions and Discussions

    1. Coldfusion administration access
      Hello, i need help please. I instaled Coldfusion developer on my laptop. All worked fine, but when i am offline i can?t get access to the...
    2. Foxpro access in Coldfusion 7
      With Coldfusion 5-6.1 we were accessing are old Foxpro 2.6 databases through ODBC using the Visual Foxpro Drivers. There wasn't any major problems....
    3. access relationships and coldfusion
      Hi guys, right a little help please.....I'm now a lot further on than last time I posted on here, your help the first time around was very good :) ...
    4. cannot access coldfusion files from IIS 5
      Did you happen to find a solution for this? We are experiencing the same issue! I will keep you posted if we find anything from this end. ...
    5. Coldfusion MX 7.0 with 'Access with Unicode'
      I used to use Coldfusion 5 with Access DB (Using ODBC DSN) under IIS, everything works fine. Now I upgraded Coldfusion 5 to Coldfusion MX 7.0 with...
  3. #2

    Default Re: ColdFusion and MS Access

    news:dbmrkh$n1p$1@forums.macromedia.com...
    > I am trying to dynamically create menus using links stored in an Access
    > database, the problem is I can only get this to work using the Access
    field
    > type as a 'memo' and having the value as shown below. How do you properly
    use
    > the 'hyperlink' datafield so that when I query the DB in the CFM file it
    will
    > display the same?
    >
    > <a href = "phone.cfm">Add Phone Number</a>
    As far as I know the hyperlink field type is revelant only to access (only
    Access knows that's a link). You can use 2 text fields, one for the link
    (phone.cfm) and another one for the message (Add Phone Number) and just
    cfoutput them.

    --
    <mack />


    Neculai Macarie Guest

  4. #3

    Default Re: ColdFusion and MS Access

    Ahh!! Thanks for that!

    That's how I initially created my table, with the extra fields, but then I
    started thinking about that hyperlink field, and I started researching and
    playing with that. You saved me a lot of time and wasted effort!

    Captain Ru 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