access fields not showing!

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

  1. #1

    Default access fields not showing!

    hi
    my company has an access database that contains things like workorders, etc.
    We'd like to set it up to publish to the web in a presentable dynamic format.
    we dont have a sql server, i would like to use coldfusion instead of asp. for
    now its just dev

    i have downloaded trial versions of coldfusion and dreamweaver, and have been
    following the tutorials pretty well, and it looks like it should work. however
    i can't seem to access the fields in the tables in our database. i was able to
    go through the coldfusion administrator and link up with the dev database so
    that its a connected data source, however when in dreamweaver and i 'view
    databases' and see mine, it says i dont have permission to work on the database!

    do i have the right idea to use dreamweaver and coldfusion to get my access
    database dynamically represented on the web?


    Adam - NDMX Guest

  2. Similar Questions and Discussions

    1. debug not showing & required fields not working
      I have MX 7.0.2 Developer's Version installed on W2K and MX 7.0.2 on W2003 soon to be production server. On my Developer's Version the debug output...
    2. Need Help with Image Fields in Access
      I'm using an Access DB for dynamic processing of product detail pages that include an enlarged image. I was told that I just have to put the Image...
    3. Web methods fields not showing up
      Good morning Yanhong, and thank you for your response. Answering your questions: 1) Yes I do get the same error from other PCs 2) Yes I can call...
    4. Displaying fields(columns) in MS Access
      Good day to everyone. I have found using various connection types my table display comes up differently. If I use an OLEDB type connections my...
    5. Memo fields in MS Access
      Is there anyone that really uses DB2 8.1 memo fields in MS Access? I'm experiencing a lot of problems with them. I tried both using LONG VARCHAR...
  3. #2

    Default Re: access fields not showing!

    I dont use dreamweaver, Just notepad. But you are on the right track!

    Take a look at this to build queries:


    [url]http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/[/url]
    wwhelp.htm?context=ColdFusion_Documentation&file=0 0000124.htm

    Vbprog40 Guest

  4. #3

    Default Re: access fields not showing!

    Adam, you have the right idea, but you don't have to use Dreamweaver to do
    ColdFusion queries. Ifyou can get it working, though, It may save you some
    time. Unfortunately, I'm not sure what the permissions problem might be.

    You can query your database in the CFM file by simply using the <CFQUERY> tag
    with SQL statements.

    <CFQUERY datasource="yourdsname" name="qryMyQueryName">
    select * from tablename
    </CFQUERY>

    pdrich 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