Welcome Guest, Not a member yet? Register   Sign In
Extending CI_MODEL but nothing....
#1

[eluser]andreffonseca[/eluser]
Hi to all,

I got some kind of a problem in my code and i can't fix it.
It goes like this:

I create a model

Code:
class Fieldvalidation extends CI_Model{

function __construct() {
        parent::__construct();
        
    }

    /**
     *
     * @param array $_params
     * @return array
     */
    private function _validateFormFields($_params)
    {
        
        $r = $this->db->query("select * from users");
        print_r($r);
        
        exit(0);
        
    }
}

The problem is when i run this code it gives me a
Quote: Fatal error: Call to a member function query() on a non-object in (...)

but if i done this:
Code:
$CI = & get_instance();
        $r = $CI->db->query("select * from users");
        print_r($r);

everything works like a charm...

I must always use "get_instance()" to use loaded libraries? The extends isn't enought?

Using CI 2.1.3.

Thanks in Advance


Messages In This Thread
Extending CI_MODEL but nothing.... - by El Forum - 05-20-2013, 10:20 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-21-2013, 02:49 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-21-2013, 05:55 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-21-2013, 06:37 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-21-2013, 11:38 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-21-2013, 02:12 PM
Extending CI_MODEL but nothing.... - by El Forum - 05-22-2013, 03:10 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-22-2013, 03:13 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-22-2013, 04:40 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-22-2013, 05:07 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-22-2013, 01:58 PM
Extending CI_MODEL but nothing.... - by El Forum - 05-23-2013, 07:08 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-23-2013, 07:35 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-23-2013, 08:37 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-23-2013, 08:41 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-24-2013, 04:20 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-24-2013, 04:39 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-24-2013, 05:12 AM
Extending CI_MODEL but nothing.... - by El Forum - 05-24-2013, 06:07 AM



Theme © iAndrew 2016 - Forum software by © MyBB