Access Error - Updated from 5 to MX 7

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

  1. #1

    Default Access Error - Updated from 5 to MX 7

    I recently upgraded from Coldfusion5 to MX7 and changed one of my datasources
    from an Access db to a MySQL one. I'm using the same datasource name as in my
    coding previosly with Access.

    I'm getting " Error Executing Database Query". Here is my code for that line:

    <cfquery name="list_persons" datasource="person_db" username="username"
    password="password">

    Any help appreciated

    disch Guest

  2. Similar Questions and Discussions

    1. ASP does not provide updated data from access ?
      Hi, For a couple of months now I have been working on a project developing a program to handle client fee data in a flash program. I have all my...
    2. Web Service + Anon Access, but getting 401 Access Denied Error
      I have a simple webservice that just returns a string. The security for this is set to windows authentication in IIS (XP Professional) and anonymous...
    3. Datagrid not updated during delete, but updated during insert and update
      Hello everyone. A test webform here, single datagrid bound to one table through dataset, and controls to delete, update and insert data. The code...
    4. Imported + updated symbols don't stay updated
      Hi everybody. I apologize for posting a question that probably any newbie should know, but ... I'm a rank Fireworks newbie. My problem is that the...
    5. Error: "Field canot be updated"
      I need some help with "overcoming" an error that is produced in the form/subform mode. Here are the details about the 3 tables that I'm working...
  3. #2

    Default Re: Access Error - Updated from 5 to MX 7

    ok, I figured part of it out... I added 'dbname="person_db"' and downloaded and
    installed a jdbc driver because I'm using mysql 4.0.23.

    Now i get the error " The system has attempted to use an undefined value,
    which usually indicates a programming error, either in your code or some system
    code."

    My line is =>
    <cfquery name="list_persons" datasource="person_db" dbname="person_db"
    username="" password="">

    disch 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