Welcome Guest, Not a member yet? Register   Sign In
Get db name
#3

(04-05-2021, 07:12 AM)pippuccio76 Wrote: hi sorry for english , there is a way to get db name ? 

i have this code to get db table :

Code:
       $db = \Config\Database::connect();

$tableList = array();


$query = $db->query("SHOW TABLES");
$results = $query->getResult();

foreach ($results as $row)
{
   $tableList[] =$row->Tables_in_name_of_db;
}

      $data['tableList']= $tableList;


Can i get the name to use in this method ? i know that db name are in .env but i want create a tool and i must get it

PHP Code:
$dbname $db->database
Reply


Messages In This Thread
Get db name - by pippuccio76 - 04-05-2021, 07:12 AM
RE: Get db name - by InsiteFX - 04-05-2021, 10:49 AM
RE: Get db name - by nfaiz - 04-05-2021, 05:52 PM



Theme © iAndrew 2016 - Forum software by © MyBB