/**
  * Fetch the single instance of this object.
  * @return ConnectionHandler
  */
 public static function getInstance()
 {
     if (self::$sInstance === null) {
         self::$sInstance = new ConnectionHandler();
     }
     return self::$sInstance;
 }