cftransaction question

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default cftransaction question

    Hi there ! Let's say i have a first query which inserts a new row in a table,
    then a second query (myquery) trying to get the id of the inserted row (with a
    select max(id) as myid). Obviously, i will put that into a cftransaction tag so
    i'm sure to get the proper id. But now, i add a cfset myvar = myquery.myid.
    Should the cfset be inside the cftransaction, or outside ? Does it make any
    differences ? Thanx for you inputs. Best regards,

    Netopole Guest

  2. Similar Questions and Discussions

    1. cftransaction
      I have a question about CFTRANSACTION. We are currently using CF6.0 with various versions of Oracle and SQL Server. In our server settings we do...
    2. CFtransaction error
      I'm getting the following error: Nested transactions are not supported. A cftransaction tag can not be nested within another cftransaction tag. ...
    3. using cftransaction with queries
      Hi, If cfquery fails, how can cftransaction recognise this? If a query fails I need to roll it back. Thanks
    4. CFTRANSACTION w/ ROLLBACK
      Here's what I'm trying to do, this worked in CF 5, but bombs with the following error in CFMX 6: The <CFCATCH> tag requires an end tag to nest...
    5. is this possible - cftransaction
      I don't want to get into the whole 'users shouldn't have access to the db' discussion. It's a battle that's been lost. We are looking at...
  3. #2

    Default Re: cftransaction question

    It can be outside, since myquery.myid are ColdFusion results which were retrieved
    inside the cftransaction tag. Once the result set is returned, you no longer care
    what DB changes occur.
    OldCFer Guest

  4. #3

    Default Re: cftransaction question

    Thanx, that's what i thought, but i wanted to make sure.
    Netopole 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