PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Convertir postgresql hstore en tableau php

Je pense que la syntaxe serait quelque chose comme ceci :

$pdo = new PDO( /*connection string*/ );
// h is the hstore column.
$stmt = $pdo->query( "SELECT (each(h)).key, (each(h)).value FROM <table name>" );
$output = array();
foreach( $stmt->fetchAll( PDO::FETCH_NUM ) as $row )
{
   // $row[ 0 ] is the key, $row[ 1 ] is the value.
   $output[ $row[ 0 ] ] = $row[ 1 ];
}