queryparam doesn't work?!?

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

  1. #1

    Default queryparam doesn't work?!?

    Hi,

    I appear to be having a problem with cfqueryparam. If I use it my query
    returns the wrong value for some reason.

    I have a very simple table like so:

    users_groups
    ------------------
    userID - varchar(35)
    groupID - integer
    The following works:

    <cfquery name="groups" datasource="mydsn">
    SELECT ug.groupID
    FROM user_groups ug
    WHERE ug.userID = 'D99EECD9-BDB5-781A-3B2CBFB687946532'
    </cfquery>
    <cfoutput>#groups.groupID#</cfoutput>

    The output is 1, as it should be. However, when I do this...

    <cfquery name="groups" datasource="mydsn">
    SELECT ug.groupID
    FROM user_groups ug
    WHERE ug.userID = <cfqueryparam
    value="D99EECD9-BDB5-781A-3B2CBFB687946532" cfsqltype="CF_SQL_VARCHAR">
    </cfquery>
    <cfoutput>#groups.groupID#</cfoutput>

    The output is inexpicably 4294967297 !

    What's going on? Any advice would be appreciated!

    bwellisch Guest

  2. Similar Questions and Discussions

    1. why does this not work?
      This CFFILE was supposed to not overwrite an exsisting image with the same name but rather generate an error. but it did overwrite the image. for...
    2. How does it work?
      How does contribute work? The product explanation and tutorial was incomplete. Does the developer and the client both need to purchase the...
    3. Links don't work in Shockwave movie but work in p
      Hi, everyone: I encountered a strange problem. I downloaded a sample movie from Macromedia site and noticed that the same problem occurs what I had...
    4. ASP won't work at all
      Even attempting to load the simplest ASP page on an intranet I get the "Server Application Error - The server has encountered an error while...
    5. net use from Dos donīt work
      Hey to all, I tried several hours to get a connect from DOS (network boot disc) to my new XP Laptop. I used: net use Z:...
  3. #2

    Default Re: queryparam doesn't work?!?

    Upgrading the jdbc driver solved the problem!

    bwellisch 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