示例#1
0
 /**
  * Get the database connection
  * 
  * @return Client
  */
 protected static function getDB()
 {
     $db = \Jasny\DB::conn();
     if (!$db instanceof Client) {
         throw new Exception("Default connection isn't a REST client");
     }
     return $db;
 }
示例#2
0
 /**
  * Get the database connection
  * 
  * @return \Jasny\DB
  */
 protected static function getDB()
 {
     $name = static::meta()['db'] ?: 'default';
     $db = \Jasny\DB::conn($name);
     if (!$db instanceof Jasny\DB\REST\Client) {
         throw new Exception("Selected database connection {$name} is not a REST client");
     }
     return $db;
 }
示例#3
0
 /**
  * Get the database connection
  * 
  * @return \Jasny\DB
  */
 protected static function getDB()
 {
     $name = static::meta()['db'] ?: 'default';
     return \Jasny\DB::conn($name);
 }
示例#4
0
 /**
  * Get the database connection
  * 
  * @return \Jasny\DB
  */
 protected static function getDB()
 {
     return \Jasny\DB::conn();
 }