Id, $intId) ); } /** * Load all EmailAddresses * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query * @return EmailAddress[] */ public static function LoadAll($objOptionalClauses = null) { // Call EmailAddress::QueryArray to perform the LoadAll query try { return EmailAddress::QueryArray(QQ::All(), $objOptionalClauses); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } /** * Count all EmailAddresses * @return int */ public static function CountAll() { // Call EmailAddress::QueryCount to perform the CountAll query return EmailAddress::QueryCount(QQ::All()); } /////////////////////////////// // QCODO QUERY-RELATED METHODS /////////////////////////////// /** * Internally called method to assist with calling Qcodo Query for this class * on load methods. * @param QQueryBuilder &$objQueryBuilder the QueryBuilder object that will be created * @param QQCondition $objConditions any conditions on the query, itself * @param QQClause[] $objOptionalClausees additional optional QQClause object or array of QQClause objects for this query * @param mixed[] $mixParameterArray a array of name-value pairs to perform PrepareStatement with (sending in null will skip the PrepareStatement step) * @param boolean $blnCountOnly only select a rowcount * @return string the query statement */ protected static function BuildQueryStatement(&$objQueryBuilder, QQCondition $objConditions, $objOptionalClauses, $mixParameterArray, $blnCountOnly) { // Get the Database Object for this Class $objDatabase = EmailAddress::GetDatabase(); // Create/Build out the QueryBuilder object with EmailAddress-specific SELET and FROM fields $objQueryBuilder = new QQueryBuilder($objDatabase, 'email_address'); EmailAddress::GetSelectFields($objQueryBuilder); $objQueryBuilder->AddFromItem('email_address'); // Set "CountOnly" option (if applicable) if ($blnCountOnly) $objQueryBuilder->SetCountOnlyFlag(); // Apply Any Conditions if ($objConditions) try { $objConditions->UpdateQueryBuilder($objQueryBuilder); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Iterate through all the Optional Clauses (if any) and perform accordingly if ($objOptionalClauses) { if ($objOptionalClauses instanceof QQClause) $objOptionalClauses->UpdateQueryBuilder($objQueryBuilder); else if (is_array($objOptionalClauses)) foreach ($objOptionalClauses as $objClause) $objClause->UpdateQueryBuilder($objQueryBuilder); else throw new QCallerException('Optional Clauses must be a QQClause object or an array of QQClause objects'); } // Get the SQL Statement $strQuery = $objQueryBuilder->GetStatement(); // Prepare the Statement with the Query Parameters (if applicable) if ($mixParameterArray) { if (is_array($mixParameterArray)) { if (count($mixParameterArray)) $strQuery = $objDatabase->PrepareStatement($strQuery, $mixParameterArray); // Ensure that there are no other Unresolved Named Parameters if (strpos($strQuery, chr(QQNamedValue::DelimiterCode) . '{') !== false) throw new QCallerException('Unresolved named parameters in the query'); } else throw new QCallerException('Parameter Array must be an array of name-value parameter pairs'); } // Return the Objects return $strQuery; } /** * Static Qcodo Query method to query for a single EmailAddress object. * Uses BuildQueryStatment to perform most of the work. * @param QQCondition $objConditions any conditions on the query, itself * @param QQClause[] $objOptionalClausees additional optional QQClause objects for this query * @param mixed[] $mixParameterArray a array of name-value pairs to perform PrepareStatement with * @return EmailAddress the queried object */ public static function QuerySingle(QQCondition $objConditions, $objOptionalClauses = null, $mixParameterArray = null) { // Get the Query Statement try { $strQuery = EmailAddress::BuildQueryStatement($objQueryBuilder, $objConditions, $objOptionalClauses, $mixParameterArray, false); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Perform the Query, Get the First Row, and Instantiate a new EmailAddress object $objDbResult = $objQueryBuilder->Database->Query($strQuery); return EmailAddress::InstantiateDbRow($objDbResult->GetNextRow(), null, null, null, $objQueryBuilder->ColumnAliasArray); } /** * Static Qcodo Query method to query for an array of EmailAddress objects. * Uses BuildQueryStatment to perform most of the work. * @param QQCondition $objConditions any conditions on the query, itself * @param QQClause[] $objOptionalClausees additional optional QQClause objects for this query * @param mixed[] $mixParameterArray a array of name-value pairs to perform PrepareStatement with * @return EmailAddress[] the queried objects as an array */ public static function QueryArray(QQCondition $objConditions, $objOptionalClauses = null, $mixParameterArray = null) { // Get the Query Statement try { $strQuery = EmailAddress::BuildQueryStatement($objQueryBuilder, $objConditions, $objOptionalClauses, $mixParameterArray, false); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Perform the Query and Instantiate the Array Result $objDbResult = $objQueryBuilder->Database->Query($strQuery); return EmailAddress::InstantiateDbResult($objDbResult, $objQueryBuilder->ExpandAsArrayNodes, $objQueryBuilder->ColumnAliasArray); } /** * Static Qcodo Query method to query for a count of EmailAddress objects. * Uses BuildQueryStatment to perform most of the work. * @param QQCondition $objConditions any conditions on the query, itself * @param QQClause[] $objOptionalClausees additional optional QQClause objects for this query * @param mixed[] $mixParameterArray a array of name-value pairs to perform PrepareStatement with * @return integer the count of queried objects as an integer */ public static function QueryCount(QQCondition $objConditions, $objOptionalClauses = null, $mixParameterArray = null) { // Get the Query Statement try { $strQuery = EmailAddress::BuildQueryStatement($objQueryBuilder, $objConditions, $objOptionalClauses, $mixParameterArray, true); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Perform the Query and return the row_count $objDbResult = $objQueryBuilder->Database->Query($strQuery); // Figure out if the query is using GroupBy $blnGrouped = false; if ($objOptionalClauses) foreach ($objOptionalClauses as $objClause) { if ($objClause instanceof QQGroupBy) { $blnGrouped = true; break; } } if ($blnGrouped) // Groups in this query - return the count of Groups (which is the count of all rows) return $objDbResult->CountRows(); else { // No Groups - return the sql-calculated count(*) value $strDbRow = $objDbResult->FetchRow(); return QType::Cast($strDbRow[0], QType::Integer); } } /* public static function QueryArrayCached($strConditions, $mixParameterArray = null) { // Get the Database Object for this Class $objDatabase = EmailAddress::GetDatabase(); // Lookup the QCache for This Query Statement $objCache = new QCache('query', 'email_address_' . serialize($strConditions)); if (!($strQuery = $objCache->GetData())) { // Not Found -- Go ahead and Create/Build out a new QueryBuilder object with EmailAddress-specific fields $objQueryBuilder = new QQueryBuilder($objDatabase); EmailAddress::GetSelectFields($objQueryBuilder); EmailAddress::GetFromFields($objQueryBuilder); // Ensure the Passed-in Conditions is a string try { $strConditions = QType::Cast($strConditions, QType::String); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Create the Conditions object, and apply it $objConditions = eval('return ' . $strConditions . ';'); // Apply Any Conditions if ($objConditions) $objConditions->UpdateQueryBuilder($objQueryBuilder); // Get the SQL Statement $strQuery = $objQueryBuilder->GetStatement(); // Save the SQL Statement in the Cache $objCache->SaveData($strQuery); } // Prepare the Statement with the Parameters if ($mixParameterArray) $strQuery = $objDatabase->PrepareStatement($strQuery, $mixParameterArray); // Perform the Query and Instantiate the Array Result $objDbResult = $objDatabase->Query($strQuery); return EmailAddress::InstantiateDbResult($objDbResult); }*/ /** * Updates a QQueryBuilder with the SELECT fields for this EmailAddress * @param QQueryBuilder $objBuilder the Query Builder object to update * @param string $strPrefix optional prefix to add to the SELECT fields */ public static function GetSelectFields(QQueryBuilder $objBuilder, $strPrefix = null) { if ($strPrefix) { $strTableName = $strPrefix; $strAliasPrefix = $strPrefix . '__'; } else { $strTableName = 'email_address'; $strAliasPrefix = ''; } $objBuilder->AddSelectItem($strTableName, 'id', $strAliasPrefix . 'id'); $objBuilder->AddSelectItem($strTableName, 'url', $strAliasPrefix . 'url'); $objBuilder->AddSelectItem($strTableName, 'person_id', $strAliasPrefix . 'person_id'); $objBuilder->AddSelectItem($strTableName, 'is_primary', $strAliasPrefix . 'is_primary'); } /////////////////////////////// // INSTANTIATION-RELATED METHODS /////////////////////////////// /** * Instantiate a EmailAddress from a Database Row. * Takes in an optional strAliasPrefix, used in case another Object::InstantiateDbRow * is calling this EmailAddress::InstantiateDbRow in order to perform * early binding on referenced objects. * @param DatabaseRowBase $objDbRow * @param string $strAliasPrefix * @param string $strExpandAsArrayNodes * @param QBaseClass $objPreviousItem * @param string[] $strColumnAliasArray * @return EmailAddress */ public static function InstantiateDbRow($objDbRow, $strAliasPrefix = null, $strExpandAsArrayNodes = null, $objPreviousItem = null, $strColumnAliasArray = array()) { // If blank row, return null if (!$objDbRow) return null; // Create a new instance of the EmailAddress object $objToReturn = new EmailAddress(); $objToReturn->__blnRestored = true; $strAliasName = array_key_exists($strAliasPrefix . 'id', $strColumnAliasArray) ? $strColumnAliasArray[$strAliasPrefix . 'id'] : $strAliasPrefix . 'id'; $objToReturn->intId = $objDbRow->GetColumn($strAliasName, 'Integer'); $strAliasName = array_key_exists($strAliasPrefix . 'url', $strColumnAliasArray) ? $strColumnAliasArray[$strAliasPrefix . 'url'] : $strAliasPrefix . 'url'; $objToReturn->strUrl = $objDbRow->GetColumn($strAliasName, 'VarChar'); $strAliasName = array_key_exists($strAliasPrefix . 'person_id', $strColumnAliasArray) ? $strColumnAliasArray[$strAliasPrefix . 'person_id'] : $strAliasPrefix . 'person_id'; $objToReturn->intPersonId = $objDbRow->GetColumn($strAliasName, 'Integer'); $strAliasName = array_key_exists($strAliasPrefix . 'is_primary', $strColumnAliasArray) ? $strColumnAliasArray[$strAliasPrefix . 'is_primary'] : $strAliasPrefix . 'is_primary'; $objToReturn->intIsPrimary = $objDbRow->GetColumn($strAliasName, 'Integer'); // Instantiate Virtual Attributes foreach ($objDbRow->GetColumnNameArray() as $strColumnName => $mixValue) { $strVirtualPrefix = $strAliasPrefix . '__'; $strVirtualPrefixLength = strlen($strVirtualPrefix); if (substr($strColumnName, 0, $strVirtualPrefixLength) == $strVirtualPrefix) $objToReturn->__strVirtualAttributeArray[substr($strColumnName, $strVirtualPrefixLength)] = $mixValue; } // Prepare to Check for Early/Virtual Binding if (!$strAliasPrefix) $strAliasPrefix = 'email_address__'; // Check for Person Early Binding $strAlias = $strAliasPrefix . 'person_id__id'; $strAliasName = array_key_exists($strAlias, $strColumnAliasArray) ? $strColumnAliasArray[$strAlias] : $strAlias; if (!is_null($objDbRow->GetColumn($strAliasName))) $objToReturn->objPerson = Person::InstantiateDbRow($objDbRow, $strAliasPrefix . 'person_id__', $strExpandAsArrayNodes, null, $strColumnAliasArray); return $objToReturn; } /** * Instantiate an array of EmailAddresses from a Database Result * @param DatabaseResultBase $objDbResult * @param string $strExpandAsArrayNodes * @param string[] $strColumnAliasArray * @return EmailAddress[] */ public static function InstantiateDbResult(QDatabaseResultBase $objDbResult, $strExpandAsArrayNodes = null, $strColumnAliasArray = null) { $objToReturn = array(); if (!$strColumnAliasArray) $strColumnAliasArray = array(); // If blank resultset, then return empty array if (!$objDbResult) return $objToReturn; // Load up the return array with each row if ($strExpandAsArrayNodes) { $objLastRowItem = null; while ($objDbRow = $objDbResult->GetNextRow()) { $objItem = EmailAddress::InstantiateDbRow($objDbRow, null, $strExpandAsArrayNodes, $objLastRowItem, $strColumnAliasArray); if ($objItem) { $objToReturn[] = $objItem; $objLastRowItem = $objItem; } } } else { while ($objDbRow = $objDbResult->GetNextRow()) $objToReturn[] = EmailAddress::InstantiateDbRow($objDbRow, null, null, null, $strColumnAliasArray); } return $objToReturn; } /////////////////////////////////////////////////// // INDEX-BASED LOAD METHODS (Single Load and Array) /////////////////////////////////////////////////// /** * Load a single EmailAddress object, * by Id Index(es) * @param integer $intId * @return EmailAddress */ public static function LoadById($intId) { return EmailAddress::QuerySingle( QQ::Equal(QQN::EmailAddress()->Id, $intId) ); } /** * Load an array of EmailAddress objects, * by PersonId Index(es) * @param integer $intPersonId * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query * @return EmailAddress[] */ public static function LoadArrayByPersonId($intPersonId, $objOptionalClauses = null) { // Call EmailAddress::QueryArray to perform the LoadArrayByPersonId query try { return EmailAddress::QueryArray( QQ::Equal(QQN::EmailAddress()->PersonId, $intPersonId), $objOptionalClauses); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } /** * Count EmailAddresses * by PersonId Index(es) * @param integer $intPersonId * @return int */ public static function CountByPersonId($intPersonId) { // Call EmailAddress::QueryCount to perform the CountByPersonId query return EmailAddress::QueryCount( QQ::Equal(QQN::EmailAddress()->PersonId, $intPersonId) ); } //////////////////////////////////////////////////// // INDEX-BASED LOAD METHODS (Array via Many to Many) //////////////////////////////////////////////////// ////////////////////////// // SAVE, DELETE AND RELOAD ////////////////////////// /** * Save this EmailAddress * @param bool $blnForceInsert * @param bool $blnForceUpdate * @return int */ public function Save($blnForceInsert = false, $blnForceUpdate = false) { // Get the Database Object for this Class $objDatabase = EmailAddress::GetDatabase(); $mixToReturn = null; try { if ((!$this->__blnRestored) || ($blnForceInsert)) { // Perform an INSERT query $objDatabase->NonQuery(' INSERT INTO `email_address` ( `url`, `person_id`, `is_primary` ) VALUES ( ' . $objDatabase->SqlVariable($this->strUrl) . ', ' . $objDatabase->SqlVariable($this->intPersonId) . ', ' . $objDatabase->SqlVariable($this->intIsPrimary) . ' ) '); // Update Identity column and return its value $mixToReturn = $this->intId = $objDatabase->InsertId('email_address', 'id'); } else { // Perform an UPDATE query // First checking for Optimistic Locking constraints (if applicable) // Perform the UPDATE query $objDatabase->NonQuery(' UPDATE `email_address` SET `url` = ' . $objDatabase->SqlVariable($this->strUrl) . ', `person_id` = ' . $objDatabase->SqlVariable($this->intPersonId) . ', `is_primary` = ' . $objDatabase->SqlVariable($this->intIsPrimary) . ' WHERE `id` = ' . $objDatabase->SqlVariable($this->intId) . ' '); } } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Update __blnRestored and any Non-Identity PK Columns (if applicable) $this->__blnRestored = true; // Return return $mixToReturn; } /** * Delete this EmailAddress * @return void */ public function Delete() { if ((is_null($this->intId))) throw new QUndefinedPrimaryKeyException('Cannot delete this EmailAddress with an unset primary key.'); // Get the Database Object for this Class $objDatabase = EmailAddress::GetDatabase(); // Perform the SQL Query $objDatabase->NonQuery(' DELETE FROM `email_address` WHERE `id` = ' . $objDatabase->SqlVariable($this->intId) . ''); } /** * Delete all EmailAddresses * @return void */ public static function DeleteAll() { // Get the Database Object for this Class $objDatabase = EmailAddress::GetDatabase(); // Perform the Query $objDatabase->NonQuery(' DELETE FROM `email_address`'); } /** * Truncate email_address table * @return void */ public static function Truncate() { // Get the Database Object for this Class $objDatabase = EmailAddress::GetDatabase(); // Perform the Query $objDatabase->NonQuery(' TRUNCATE `email_address`'); } /** * Reload this EmailAddress from the database. * @return void */ public function Reload() { // Make sure we are actually Restored from the database if (!$this->__blnRestored) throw new QCallerException('Cannot call Reload() on a new, unsaved EmailAddress object.'); // Reload the Object $objReloaded = EmailAddress::Load($this->intId); // Update $this's local variables to match $this->strUrl = $objReloaded->strUrl; $this->PersonId = $objReloaded->PersonId; $this->intIsPrimary = $objReloaded->intIsPrimary; } //////////////////// // GETTORS AND SETTORS //////////////////// /** * Lookup a VirtualAttribute value (if applicable). Returns NULL if none found. * @param string $strName * @return string */ public function GetVirtualAttribute($strName) { if (array_key_exists($strName, $this->__strVirtualAttributeArray)) return $this->__strVirtualAttributeArray[$strName]; return null; } /** * Override method to perform a property "Get" * This will get the value of $strName * * @param string $strName Name of the property to get * @return mixed */ public function __get($strName) { switch ($strName) { /////////////////// // Member Variables /////////////////// case 'Id': /** * Gets the value for intId (Read-Only PK) * @return integer */ return $this->intId; case 'Url': /** * Gets the value for strUrl (Not Null) * @return string */ return $this->strUrl; case 'PersonId': /** * Gets the value for intPersonId (Not Null) * @return integer */ return $this->intPersonId; case 'IsPrimary': /** * Gets the value for intIsPrimary * @return integer */ return $this->intIsPrimary; /////////////////// // Member Objects /////////////////// case 'Person': /** * Gets the value for the Person object referenced by intPersonId (Not Null) * @return Person */ try { if ((!$this->objPerson) && (!is_null($this->intPersonId))) $this->objPerson = Person::Load($this->intPersonId); return $this->objPerson; } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } //////////////////////////// // Virtual Object References (Many to Many and Reverse References) // (If restored via a "Many-to" expansion) //////////////////////////// case '__Restored': return $this->__blnRestored; default: try { return parent::__get($strName); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } /** * Override method to perform a property "Set" * This will set the property $strName to be $mixValue * * @param string $strName Name of the property to set * @param string $mixValue New value of the property * @return mixed */ public function __set($strName, $mixValue) { switch ($strName) { /////////////////// // Member Variables /////////////////// case 'Url': /** * Sets the value for strUrl (Not Null) * @param string $mixValue * @return string */ try { return ($this->strUrl = QType::Cast($mixValue, QType::String)); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } case 'PersonId': /** * Sets the value for intPersonId (Not Null) * @param integer $mixValue * @return integer */ try { $this->objPerson = null; return ($this->intPersonId = QType::Cast($mixValue, QType::Integer)); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } case 'IsPrimary': /** * Sets the value for intIsPrimary * @param integer $mixValue * @return integer */ try { return ($this->intIsPrimary = QType::Cast($mixValue, QType::Integer)); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } /////////////////// // Member Objects /////////////////// case 'Person': /** * Sets the value for the Person object referenced by intPersonId (Not Null) * @param Person $mixValue * @return Person */ if (is_null($mixValue)) { $this->intPersonId = null; $this->objPerson = null; return null; } else { // Make sure $mixValue actually is a Person object try { $mixValue = QType::Cast($mixValue, 'Person'); } catch (QInvalidCastException $objExc) { $objExc->IncrementOffset(); throw $objExc; } // Make sure $mixValue is a SAVED Person object if (is_null($mixValue->Id)) throw new QCallerException('Unable to set an unsaved Person for this EmailAddress'); // Update Local Member Variables $this->objPerson = $mixValue; $this->intPersonId = $mixValue->Id; // Return $mixValue return $mixValue; } break; default: try { return parent::__set($strName, $mixValue); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } /////////////////////////////// // ASSOCIATED OBJECTS' METHODS /////////////////////////////// } ///////////////////////////////////// // ADDITIONAL CLASSES for QCODO QUERY ///////////////////////////////////// class QQNodeEmailAddress extends QQNode { protected $strTableName = 'email_address'; protected $strPrimaryKey = 'id'; protected $strClassName = 'EmailAddress'; public function __get($strName) { switch ($strName) { case 'Id': return new QQNode('id', 'Id', 'integer', $this); case 'Url': return new QQNode('url', 'Url', 'string', $this); case 'PersonId': return new QQNode('person_id', 'PersonId', 'integer', $this); case 'Person': return new QQNodePerson('person_id', 'Person', 'integer', $this); case 'IsPrimary': return new QQNode('is_primary', 'IsPrimary', 'integer', $this); case '_PrimaryKeyNode': return new QQNode('id', 'Id', 'integer', $this); default: try { return parent::__get($strName); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } } class QQReverseReferenceNodeEmailAddress extends QQReverseReferenceNode { protected $strTableName = 'email_address'; protected $strPrimaryKey = 'id'; protected $strClassName = 'EmailAddress'; public function __get($strName) { switch ($strName) { case 'Id': return new QQNode('id', 'Id', 'integer', $this); case 'Url': return new QQNode('url', 'Url', 'string', $this); case 'PersonId': return new QQNode('person_id', 'PersonId', 'integer', $this); case 'Person': return new QQNodePerson('person_id', 'Person', 'integer', $this); case 'IsPrimary': return new QQNode('is_primary', 'IsPrimary', 'integer', $this); case '_PrimaryKeyNode': return new QQNode('id', 'Id', 'integer', $this); default: try { return parent::__get($strName); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } } } } ?>