Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Datenbankergebnisse als Objekte oder Arrays?

Ich habe immer Objekte verwendet - aber ich gebe die Daten nicht direkt aus der Abfrage ein. Mit 'Set'-Funktionen erstelle ich das Layout und vermeide so Probleme mit Joins und Namenskollisionen. Im Fall Ihres 'full_name'-Beispiels würde ich wahrscheinlich 'as' verwenden, um die Namensteile zu erhalten, jeden im Objekt setzen und 'get_full_name' als Member fn anbieten.

Wenn Sie sich ehrgeizig fühlen, können Sie „get_age“ alle möglichen Dinge hinzufügen. Legen Sie das Geburtsdatum einmal fest und toben Sie sich von dort aus aus.

BEARBEITEN:Es gibt mehrere Möglichkeiten, Objekte aus Ihren Daten zu machen. Sie können die Klasse vordefinieren und Objekte erstellen oder sie „on the fly“ erstellen.

--> Einige v vereinfachte Beispiele -- wenn das nicht ausreicht, kann ich weitere hinzufügen.

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 );  
} 

vordefiniert:

/** 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;
    }
}

Verwendung:

$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 );  
} 

Dann können Sie später $ret durchlaufen und Adressetiketten ausgeben:

foreach( $ret as $location )
{ 
    echo $location->getMailing();
}