Ik heb altijd objecten gebruikt, maar ik plaats de gegevens niet rechtstreeks vanuit de query. Met behulp van 'set'-functies maak ik de lay-out en vermijd zo problemen met joins en naamconflicten. In het geval van je 'full_name'-voorbeeld zou ik waarschijnlijk 'as' gebruiken om de naamdelen te krijgen, elk in het object in te stellen en 'get_full_name' als lid fn aan te bieden.
Als je ambitieus was, zou je van alles kunnen toevoegen aan 'get_age'. Stel de geboortedatum één keer in en ga vanaf daar los.
EDIT:Er zijn verschillende manieren om objecten van uw gegevens te maken. U kunt de klasse vooraf definiëren en objecten maken of u kunt ze 'on the fly' maken.
--> Enkele v vereenvoudigde voorbeelden -- als dit niet voldoende is, kan ik er meer toevoegen.
on the fly:
$conn = DBConnection::_getSubjectsDB();
$query = "select * from studies where Status = 1";
$st = $conn->prepare( $query );
$st->execute();
$rows = $st->fetchAll();
foreach ( $rows as $row )
{
$study = (object)array();
$study->StudyId = $row[ 'StudyId' ];
$study->Name = $row[ 'StudyName' ];
$study->Investigator = $row[ 'Investigator' ];
$study->StartDate = $row[ 'StartDate' ];
$study->EndDate = $row[ 'EndDate' ];
$study->IRB = $row[ 'IRB' ];
array_push( $ret, $study );
}
vooraf gedefinieerd:
/** Single location info
*/
class Location
{
/** Name
* @var string
*/
public $Name;
/** Address
* @var string
*/
public $Address;
/** City
* @var string
*/
public $City;
/** State
* @var string
*/
public $State;
/** Zip
* @var string
*/
public $Zip;
/** getMailing
* Get a 'mailing label' style output
*/
function getMailing()
{
return $Name . "\n" . $Address . "\n" . $City . "," . $State . " " . $Zip;
}
}
gebruik:
$conn = DBConnection::_getLocationsDB();
$query = "select * from Locations where Status = 1";
$st = $conn->prepare( $query );
$st->execute();
$rows = $st->fetchAll();
foreach ( $rows as $row )
{
$location = new Location();
$location->Name= $row[ 'Name' ];
$location->Address = $row[ 'Address ' ];
$location->City = $row[ 'City' ];
$location->State = $row[ 'State ' ];
$location->Zip = $row[ 'Zip ' ];
array_push( $ret, $location );
}
Later kunt u $ret doorlussen en adresetiketten uitvoeren:
foreach( $ret as $location )
{
echo $location->getMailing();
}