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

  1. #1

    Default tables - access db

    i'm using coldfusion with an access db. i currently have two tables in my db
    which i am able to query no probs. i now wnat to add a third table but for some
    reason its not displaying in the "application / database / tables" panel in
    dreamweaver, therefore i can not connect/query it.

    ive tried verifying the db via coldfusion control panel
    ive tried refreshing
    ive tried restarting
    ive tried deleting and recreating

    please elp !!!

    zac1234 Guest

  2. Similar Questions and Discussions

    1. Access Tables without having a Server??
      Hello, I have a Java-Application that works with a MYSQL Server on a central Computer through the MYSQL-jdbc driver. Now I have the problem...
    2. Two tables in MS access
      Hi I have 2 tables in MS acess for my web application tdldecedent and tblcircumstances with common field name Case number. When the user will log...
    3. access tables
      :confused; we are doing a database driven website using dreamweaver and microsoft access as the database. everything works fine until we create an...
    4. list tables from Access 2000
      What is the output variable? Who do you give read permissions to? Why would this need more permissons that a script that actually makes tables?...
    5. readonly access on tables
      Hi, We have a SQL server database on remote server. We are using ODBC connection to read and write into the table. But we have another user wants...
  3. #2

    Default Re: tables - access db

    Have you tried a cfquery tag in code view of dw?
    Dan Bracuk Guest

  4. #3

    Default Re: tables - access db

    yes i tried this. i tried just ignoring the fact that it wasnt listed in the
    applications panel and hand coded but ij just throws up an error when tested.

    its almost as if the table hasnt been created....

    zac1234 Guest

  5. #4

    Default Re: tables - access db

    When you said you tried deleting and re-creating were you referring to the table or datasource? If table, try datasource.
    Dan Bracuk Guest

  6. #5

    Default Re: tables - access db

    yes tried deleting and then reinstating the datasource but still no joy. just ct understand it, ive triple checked everything .... i think!
    zac1234 Guest

  7. #6

    Default Re: tables - access db

    How did you create this table? Did you actually go into Access and create it and/or have you actually gone into Access and verified that the table exists?

    Phil
    paross1 Guest

  8. #7

    Default Re: tables - access db

    yes correct, i simply opened up acccess, then opened up my db and created a
    table the same way i did with the other two and when i go back into access the
    table doe exist ok and doesnt give any indication that there might be something
    wrong/different about it.

    zac1234 Guest

  9. #8

    Default Re: tables - access db

    zac1234 wrote:
    > i'm using coldfusion with an access db. i currently have two tables in my db
    > which i am able to query no probs. i now wnat to add a third table but for some
    > reason its not displaying in the "application / database / tables" panel in
    > dreamweaver, therefore i can not connect/query it.
    Try creating the table from inside CF using a query:
    <cfquery datasource="...">
    CREATE TABLE tablename (
    ID INTEGER,
    name varchar(25)
    etc.
    )
    </cfquery>

    Jochem

    --
    Jochem van Dieten
    Adobe Community Expert for ColdFusion
    Jochem van Dieten **AdobeCommunityExpert** Guest

  10. #9

    Default Re: tables - access db

    Have you looked at the database with the Access application? Is the table
    really there? Access will create a .ldb file that locks updates out certain
    things you can do with the .mdb file.

    Is the database on a remote server or on your local machine?

    jdeline Guest

  11. #10

    Default Re: tables - access db

    i'm thinking you are looking at the wrong database. do you have access to the
    server the db is on? if so, check your cf administrator to make sure you are
    referring to the db on that server... then open up the db from that server. i
    think you are using some local copy or something. if its a standard table in
    access that you have a dsn set up for, you should have no problems.

    elDonrico Guest

  12. #11

    Default Re: tables - access db

    and when i say access to the server i mean do you have the ability to go to the server other than ftp? not access the program (man, what a stupid name to call a program)
    elDonrico 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