I am trying to select empty columns using datamapper.
Below is what I tried:
$u = new test();
$u->where("id",1);
$u->select('name');
$u->get();
$u->result_count();
I am trying to find out whether the name column is empty or not.
If the name is present in the database, it will insert the name or it will be empty.
Thanks