예제 #1
0
 public static function generalDBConnection()
 {
     if (!isset(self::$uniqueSQLCon)) {
         $sql = new \sDb(SystemConfig::DB_HOST, SystemConfig::DB_USER, SystemConfig::DB_PASS, SystemConfig::DB_NAME);
         self::$uniqueSQLCon = $sql;
     }
     return self::$uniqueSQLCon;
 }