up vote 5 down vote favorite
2
share [g+] share [fb]

is it possible (how) to use mysql transactions and rollbacks using kohana ORM ?

link|improve this question

67% accept rate
feedback

2 Answers

Check out the official forums. It shows an example on how to use transactions with Ko3:

$db->query(NULL, 'TRANSACTION START');  
// Do stuff  
$db->query(NULL, 'COMMIT');

How to do it with version 2, I don't know. I'm still new to kohana myself, and learning Ko3 rather than 2. But I'm guessing it's quite similar.

link|improve this answer
merely, i have to use it with 2.4 – gpilotino Oct 13 '09 at 19:10
I can confirm that this also works with 2.3.4 – Cocowalla Mar 26 '10 at 17:51
feedback

SQL Transactions in Kohana 3.x are not done the same way as in 2.x. In 3.x, the database class comes with transaction methods:

$db->begin();
$db->commit();
$db->rollback();

This also works if you are using ORM stuff. Just initiate the transaction before ORM saves, updates, a or deletes.

Read more in this post: http://dev.strategystar.net/2011/10/sql-transactions-with-kohana-3-x/

In 2.x, transactions had to be done manually:

$this->db->query("START TRANSACTION")
link|improve this answer
Nice, this is the way to go. – GarciaWebDev Jan 24 at 16:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.