update query not working any ideas?

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

  1. #1

    Default update query not working any ideas?

    Hi, I am attempting to do a simple update query using the cfquery tag. The
    code is:
    <cfquery datasource="test" name="testers">
    update tablename
    set col1=col1 + "some new stuff"
    where colid=4
    </cfquery>

    I am not getting an error, however I am also not getting an update. Any
    clues. I am using sql 2000.


    SilentBob'secretfusion Guest

  2. Similar Questions and Discussions

    1. PHP Update query not working
      Hello, I'm using a standard update query and getting an error message. Here is the code: if ((isset($HTTP_POST_VARS)) && ($HTTP_POST_VARS ==...
    2. UPDATE using a query?
      I thought something would be easy, but I'm lost. Quickly, I'm making a form to sign up employees for a training course. The selection is 1 of 4...
    3. Update not working :(
      Hi, I cant seem to find the problem, I hav an update for which displays items to choose from and then a form at the bottom to enter the model id...
    4. Working through an update query Coldfusion/Access
      I'm working on an update query for a class registration system in ColdFusion 6.1 running against an Access 2000 datasource. In short what I need to...
    5. Update query help
      I'd like to update some of the fields in a table 'master', where some of the data in a row already exists. For example, I'd like to add to a record...
  3. #2

    Default Re: update query not working any ideas?

    Are you attempting string concatenation or adding numbers?

    Phil
    paross1 Guest

  4. #3

    Default Re: update query not working any ideas?

    It SHOULD be crashing, SQLServer likes single not double quotes.
    That said, perhaps you're not executing that portion of the code, or that new page.
    JMGibson3 Guest

  5. #4

    Default Re: update query not working any ideas?

    whoops. sorry. it should be single quotes, I mistyped in forum.

    Correct

    <cfquery datasource="test" name="testers">
    update tablename
    set col1=col1 + 'some new stuff'
    where colid=4
    </cfquery>


    SilentBob'secretfusion Guest

  6. #5

    Default Re: update query not working any ideas?

    Just adding a string value to a string value.
    SilentBob'secretfusion Guest

  7. #6

    Default Re: update query not working any ideas?

    Perhaps there aren't any rows where colid=4. Otherwise, I don't see why it wouldn't work.
    paross1 Guest

  8. #7

    Default Re: update query not working any ideas?

    Either you have left something off in your problem code, or there are no
    matching rows, or you've overflowed the column.

    It's better to always <b>attach</b> the <b>exact</b> code. Doubtless the key
    problem was lost in "translation".

    In the meantime, you can change your query to this:<i>
    <cfquery datasource="test" name="testers">
    update tablename
    set col1=col1 + 'some new stuff'
    where colid=4

    <b>select @@RowCount as NumUpdated</b>
    </cfquery></i>

    ... and dump the result.



    MikerRoo 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