Welcome Guest, Not a member yet? Register   Sign In
query helper methods and transactions
#1

hi

the query helper methods insert_id and affected_rows return 0 after a transaction that contains a update and insert

i mention that the transaction is successful because it inserts the data without any problems

is this a bug or i'm missing something ?

my code is like this

PHP Code:
$this->db->trans_start();
$this->db->query('update query here');
$this->db->query('insert query here');
$this->db->trans_complete();

if (
$this->db->trans_status() !== FALSE)
{
    echo $this->db->insert_id();
 
   echo $this->db->affected_rows();

Reply
#2

I haven't tested this myself but have you tried running insert_id() and affected_rows() before calling trans_complete()? I'd imagine that once trans_complete() is called, insert_id() and affected_rows() would no longer be tied to the queries run from within the transaction.
Reply
#3

(03-11-2015, 11:57 AM)Nichiren Wrote: I haven't tested this myself but have you tried running insert_id() and affected_rows() before calling trans_complete()? I'd imagine that once trans_complete() is called, insert_id() and affected_rows() would no longer be tied to the queries run from within the transaction.

Yep, that's the most probable cause ... This happens either at the SQL level, or the PHP-extension one - CI has no control over it.
Reply
#4

yes you are right i retested and if you run the functions before trans_complete() is all working
Reply




Theme © iAndrew 2016 - Forum software by © MyBB