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

  1. #1

    Default CFMX 7 & MS Access

    When executing the following query in In CFMX 7

    <cfquery name="registerUser" datasource="test">
    INSERT INTO test1 (Name, password) VALUES ('aaa','aaa')
    </cfquery>

    (i) if datasource is MS Access, there is no problem
    (ii) if datasource is MSAccess with unicode, a "Syntax error in INSERT INTO
    statement" occurs.

    Did anybody face the same problem?

    doramon Guest

  2. Similar Questions and Discussions

    1. unlocking Access databases in CFMX
      ColdFusion pools connections. There are timeout settings on the connections. You have to have ZERO ACTIVITY on the connection pool before it lets...
    2. unlocking Access databases in CFMX
      I have the same issue. I cannot unlock the .mdb file on my shared server. It uses CF7 and I was told and proven to myseld that "Maintain...
    3. MS Access on CFMX Linux
      Hi. I need to be able to use an MS Access database on CFMX on Linux. Has anyone managed to do this? I guess using JDBC but how? Thanks in...
    4. CFMX 7.0 Datasource with Access
      I just installed CFMX 7 on a new web server. When I initially set it up I was able to connect a few of my Access databases without a problem. Today...
    5. unlocking Access databases in CFMX
      I can't believe with as often as this is a problem for me, that it doesn't appear more often in the forum. I search for a solution. I get the same...
  3. #2

    Default Re: CFMX 7 & MS Access

    Name is a reserved word:

    [url]http://support.microsoft.com/default.aspx?scid=KB;en-us;286335[/url]

    Try this:

    <cfquery name="registerUser" datasource="test">
    INSERT INTO test1 ([Name], password) VALUES ('aaa','aaa')
    </cfquery>


    --
    Ken Ford
    PVII Support Team
    [url]http://www.projectseven.com[/url]
    Team Macromedia Volunteer - Dreamweaver
    Certified Dreamweaver MX 2004 Developer


    "doramon" <webforumsuser@macromedia.com> wrote in message news:d0v0id$3db$1@forums.macromedia.com...
    > When executing the following query in In CFMX 7
    >
    > <cfquery name="registerUser" datasource="test">
    > INSERT INTO test1 (Name, password) VALUES ('aaa','aaa')
    > </cfquery>
    >
    > (i) if datasource is MS Access, there is no problem
    > (ii) if datasource is MSAccess with unicode, a "Syntax error in INSERT INTO
    > statement" occurs.
    >
    > Did anybody face the same problem?
    >

    Ken Ford - *TMM* & PVII Guest

  4. #3

    Default Re: CFMX 7 & MS Access

    Thanks for your reply.

    I made a typing mistake. Sorry. The code should read

    <cfquery name="registerUser" datasource="test">
    INSERT INTO test1 (name1, password) VALUES ('aaa','aaa')
    </cfquery>

    This code works if "test" is a MS Access datasource.
    However, if "test" is a MS Access with unicode datasource, the syntax error
    results.


    doramon 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