Welcome Guest, Not a member yet? Register   Sign In
How to retrieve database error from CodeIgniter
#19

[eluser]Unknown[/eluser]
I realize this is an old post, just figured I'd share what I've found on the topic.

If you're using the OCI driver, you can capture the most recent error with this:

Code:
oci_error( $this->db->stmd_id )

Which will return (in the event of a unique constraint error)

Code:
array(4) {
  ["code"]=>
  int(1)
  ["message"]=>
  string(74) "ORA-00001: unique constraint (DB.TABLE_UK1) violated"
  ["offset"]=>
  int(0)
  ["sqltext"]=>
  string(90) "INSERT INTO FAKETABLE (report_id, role_id, var_list) VALUES ('365','1','1090')"
}

I realize this could potentially be wrapped in the DB class somewhere but I'll leave that up to the reader to decide.


Messages In This Thread
How to retrieve database error from CodeIgniter - by El Forum - 04-11-2008, 08:09 AM
How to retrieve database error from CodeIgniter - by El Forum - 04-14-2008, 07:15 AM
How to retrieve database error from CodeIgniter - by El Forum - 04-14-2008, 08:25 AM
How to retrieve database error from CodeIgniter - by El Forum - 04-15-2008, 06:21 AM
How to retrieve database error from CodeIgniter - by El Forum - 04-15-2008, 06:41 AM
How to retrieve database error from CodeIgniter - by El Forum - 04-15-2008, 11:50 AM
How to retrieve database error from CodeIgniter - by El Forum - 04-16-2008, 04:41 AM
How to retrieve database error from CodeIgniter - by El Forum - 04-16-2008, 08:14 AM
How to retrieve database error from CodeIgniter - by El Forum - 05-23-2008, 02:15 AM
How to retrieve database error from CodeIgniter - by El Forum - 05-23-2008, 02:16 AM
How to retrieve database error from CodeIgniter - by El Forum - 05-23-2008, 02:20 AM
How to retrieve database error from CodeIgniter - by El Forum - 05-23-2008, 02:54 AM
How to retrieve database error from CodeIgniter - by El Forum - 05-23-2008, 03:01 AM
How to retrieve database error from CodeIgniter - by El Forum - 05-23-2008, 03:13 AM
How to retrieve database error from CodeIgniter - by El Forum - 03-05-2009, 11:13 AM
How to retrieve database error from CodeIgniter - by El Forum - 05-14-2009, 06:19 PM
How to retrieve database error from CodeIgniter - by El Forum - 08-18-2009, 08:45 AM
How to retrieve database error from CodeIgniter - by El Forum - 03-03-2010, 06:19 AM
How to retrieve database error from CodeIgniter - by El Forum - 05-23-2012, 01:53 PM



Theme © iAndrew 2016 - Forum software by © MyBB