/**
  * Constructor alias - useful for chaining
  * Example : $Status = PDOExtended::NewInstance('mysql:host=localhost', 'user', 'password')->SqlMultiAssoc("SHOW GLOBAL STATUS");
  */
 public static function NewInstance()
 {
     $CurrentClass = new \ReflectionClass(get_called_class());
     return $CurrentClass->NewInstanceArgs(func_get_args());
 }