Welcome Guest, Not a member yet? Register   Sign In
Constraint Error
#1

Hi everyone, I got a Constraint Error, I Know the motive and I think how to fix it. But I need get a handle erro. CI only show the message below.


Error Number:
DELETE FROM GCC_CONTRATOS WHERE ID_CONTRATO = '124'
Filename: /vagrant/gcc/models/contratos_model.php
Line Number: 183

My question is. Where the error number? How to get it? How to show a friendly message to my users?

I use CI 2.x with Oracle.

Thanks in advanced.
PHP is Life!!! See My Portfolio
Reply
#2

Try this:
PHP Code:
echo $this->db->_error_message();
echo 
$this->db->_error_number(); 
Reply
#3

(This post was last modified: 08-19-2015, 06:17 AM by calcio.)

Hi @Wouter60 these commands don't work here using oracle.

I tried it to forces it handler an error.


PHP Code:
$this->db->where('ID_CONTRATO'$idContrato);
 
       //$query = $this->db->delete($this->tabela);
 
       if (!$this->db->delete($this->tabela)) {
 
           echo $this->db->_error_message();
 
           echo $this->db->_error_number();
 
       }

 
       exit

Even using try ... catch don't work too.


PHP Code:
try {
 
           $query $this->db->delete($this->tabela);
 
       } catch (Exception $e) {
 
           var_dump($e);
 
       
PHP is Life!!! See My Portfolio
Reply




Theme © iAndrew 2016 - Forum software by © MyBB