using cftransaction with queries

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default using cftransaction with queries

    Hi,

    If cfquery fails, how can cftransaction recognise this?

    If a query fails I need to roll it back.

    Thanks
    Mattastic 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 across cfcs
      Hi there, There seems to be a REALLY irritating 'feature' of Coldfusion MX, to do with using cftransaction across function call boundaries, which...
    3. Queries Of Queries Single Quote Problem
      When using queries of queries I'm having the following issue. Select Company_ID From qry_MyQuery Where Company_NM = 'MyString''s' <----...
    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: using cftransaction with queries

    [url]http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-c15.htm[/url]



    <cftransaction action="BEGIN">

    <cftry>

    <cfquery ... >
    INSERT statement
    </cfquery>
    <cfcatch type="Database">
    <cftransaction action="ROLLBACK" />
    </cfcatch>

    </cftry>

    <cftransaction action="COMMIT" />

    </cftransaction>

    cf_menace Guest

  4. #3

    Default Re: using cftransaction with queries

    [url]http://www.tecito.com:[/url] Hi. I need some clarification on this topic too. Is
    it necessary to use and EXCLUSIVE CFLOCK around the CFTRANSACTION? I have been
    using cftransactions around my queries without CFLOCK, but i was reading an
    O'Reilly book, they were using both cflock and cftransaction in their queries.
    Bye.

    Latino Guest

  5. #4

    Default Re: using cftransaction with queries

    Hi

    I think we dont reuiqre to use the cflock for cftransaction.

    and another thing is the even we dont require to use the rollback ofthe
    transaction in the cftransaction.
    this will take care automatically. that means either all the cfqueries will be
    executed or none.

    vkunirs 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