Welcome Guest, Not a member yet? Register   Sign In
queryBuilder + getFieldNames
#1

Hi 

This works fine 
PHP Code:
$db  = \Config\Database::connect();
      $r $db->query("select * from table");
      $fn $r->getFieldNames();
      var_dump($fn); 

But how to bring out the same thing with queryBuilder ?
This cannot be done
PHP Code:
$users = new \App\Models\UserModel();
      $r =  $users->findAll();
      var_dump($r->getFieldNames()); 
Reply
#2

It's not working because in your first example $r is a query object that has access to the database functions. But in your second example, $r is a simple user object (can be an Entity or a standard object). 

Using your second example, you can use your model object to access the db and call getFieldNames() like this:
PHP Code:
$users = new \App\Models\UserModel();
var_dump($users->db->getFieldNames()); 
CodeIgniter 4 tutorials (EN/FR) - https://includebeer.com
/*** NO support in private message - Use the forum! ***/
Reply
#3

Thank you - I don't know why I didn't notice it before
Reply




Theme © iAndrew 2016 - Forum software by © MyBB