Esempio n. 1
0
 public function __construct($dbString, $dbUser, $dbPassword, $configKey)
 {
     $this->oConnection = null;
     $this->dbString = $dbString;
     $this->dbUser = $dbUser;
     $this->dbPassword = $dbPassword;
     parent::__construct($dbUser, $configKey);
 }
Esempio n. 2
0
 public function __construct(DBConnection $conn, $objectName, $configKey)
 {
     $this->dbConnection = $conn;
     $this->owner = $conn->getUser();
     parent::__construct($objectName, $configKey);
 }
Esempio n. 3
0
 public function __construct($webServiceName, $configKey, $webServiceUrl)
 {
     $this->url = $webServiceUrl;
     parent::__construct($webServiceName, $configKey);
 }