Mysql
 sql >> Database >  >> RDS >> Mysql

Risultati del database come oggetti o array?

Ho sempre usato oggetti, ma non inserisco i dati direttamente dalla query. Usando le funzioni "imposta" creo il layout e quindi evito problemi con i join e le collisioni di nomi. Nel caso del tuo esempio "nome_completo", probabilmente userei "come" per ottenere le parti del nome, impostare ciascuna nell'oggetto e offrire "get_nome_completo" come membro fn.

Se ti sentissi ambizioso, potresti aggiungere ogni sorta di cose a 'get_age'. Imposta la data di nascita una volta e da lì impazzisci.

EDIT:Esistono diversi modi per creare oggetti dai tuoi dati. Puoi predefinire la classe e creare oggetti oppure puoi crearli 'al volo'.

--> Alcuni v esempi semplificati -- se questo non è sufficiente posso aggiungerne altri.

al volo:

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

predefinito:

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

utilizzo:

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

Quindi in seguito puoi eseguire il loop su $ret e produrre etichette postali:

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