|
|
LXXX. Funzioni PostgreSQLIntroduzione
Il database PostgreSQL � un prodotto OpenSource ed � disponibile gratuitamente.
Postgres, sviluppato originariamente nel Dipartimento di Informatica dell'Universit� di
Berkeley, ha anticipato molti dei concetti su oggetti e relazioni che ora
stanno diventando disponibili in alcuni database commerciali. Postgres fornisce
supporto per il linguaggio SQL/92/SQL99, integrit� transazionale ed estensibilit�
dei tipi. PostgreSQL � un discendente open source dell'originario
codice di Berkeley.
Requisiti
Per utilizzare il supporto a PostgreSQL, occorre PostgreSQL 6.5 o
versioni pi� recenti. PostgreSQL 7.0 o successivi permettono di abilitare tutte le funzionalit�
di questo modulo. PostgreSQL ammette molte codifiche di carattere, tra cui
la codifica multibyte. La versione corrente e maggiori
informazioni su PostgreSQL sono disponibili su .
Istallazione
Per abilitare il supporto PostgreSQL,
--with-pgsql[=DIR] � richiesto quando si compila
il PHP. Se � disponibile il modulo di libreria dinamico, questo pu� essere
caricato usando la direttiva extension
in php.ini o la funzione dl().
Configurazione Runtime
Le direttive ini previste sono descritte in
php.ini-dist che � distribuito con il pacchetto dei sorgenti.
Utilizzo e suggerimentiAttenzione |
L'utilizzo del modulo PostgreSQL con PHP 4.0.6 non � raccomandato a causa
di un bug nella gestione dei messaggi. Si usi PHP 4.1.0 o successivi.
|
Attenzione |
I nomi delle funzioni relative a PostgreSQL verranno cambiate a partire dalla versione 4.2.0 per
conformarsi agli standard di sviluppo attuali. La maggior parte dei nuovi nomi avr�
underscore aggiuntivi, per esempio pg_lo_open(). Alcune funzioni verranno rinominate
per dare consistenza. Per esempio pg_exec() diventer�
pg_query(). I vecchi nomi potranno essere usati nella versione 4.2.0 e in alcune versioni
successive alla 4.2.0, ma potranno essere cancellati in futuro.
Tabella 1. Nomi di funzione cambiati
La vecchia sintassi di pg_connect()/pg_pconnect()
sar� deprecata per supportare, in futuro, connessioni asincrone.
Si usi una stringa di connessione con pg_connect() e
pg_pconnect().
|
Non tutte le funzioni sono supportate su tutte le architetture. Dipende dalla versione
di libpq (L'interfaccia Client C per PostgreSQL) e da come libpq �
compilato. Se c'� una funzione mancante, libpq non supporta
la feature richiesta per quella funzione.
� importante usare versioni di libpq pi� recenti rispetto al Server
PostgreSQL al quale ci si vuole collegare. Se si usa una versione di libpq pi� vecchia rispetto
al Server PostgreSQL al quale ci si vuole collegare, si andr� probabilmente incontro a problemi.
Fin dalla versione 6.3 (03/02/1998) PostgreSQL usa gli unix domain socket
di default. La porta TCP, di default, NON verr� aperta. La tabella
sottostante descrive queste nuove possibilit� di connessione. Questo
socket pu� essere trovato in /tmp/.s.PGSQL.5432.
Questa opzione pu� venire abilitata con la flag '-i' da
postmaster e il suo significato �: "ascolta i
socket TCP/IP cos� come gli Unix domain socket".
Tabella 2. Postmaster e PHP Postmaster | PHP | Status |
---|
postmaster & | pg_connect("dbname=NomeMioDatabase"); | OK | postmaster -i & | pg_connect("dbname=NomeMioDatabase"); | OK | postmaster & | pg_connect("host=localhost dbname=NomeMioDatabase"); |
Unable to connect to PostgreSQL server: connectDB() failed:
Is the postmaster running and accepting TCP/IP (with -i)
connection at 'localhost' on port '5432'? in
/path/to/file.php on line 20.
| postmaster -i & | pg_connect("host=localhost dbname=NomeMioDatabase"); | OK |
Si pu� stabilire una connessione al server PostgreSQL usando le
seguenti coppie di valori impostate nella stringa di comando: $conn =
pg_connect("host=IlMioHost port=LaMiaPorta tty=myTTY options=LeMieOpzioni
dbname=IlMioDB user=IlMioUtente password=LaMiaPassword ");
L'uso della sintassi in uso precedentemente:
$conn = pg_connect ("host", "port", "options", "tty", "dbname")
� deprecato.
Le variabili d'ambiente modificano il comportamento server/client di
PostgreSQL. Per esempio, il modulo PostgreSQL si baser� sulla variabile
PGHOST quando il nome dell'host � omesso nella stringa di
connessione. Le variabili d'ambiente riconosciute sono diverse da versione
a versione. Consultare il Manuale del Programmatore PostgreSQL (lbpq -
Variabili d'Ambiente) per ulteriori dettagli.
Assicurarsi di aver impostato le variabili d'ambiente per l'utente appropriato. Usare
$_ENV o getenv() per controllare
quali variabili d'ambiente sono disponibili al processo corrente.
Esempio 1. Impostazione dei parametri di default PGHOST=pgsql.example.com
PGPORT=7890
PGDATABASE=web-system
PGUSER=web-user
PGPASSWORD=segreta
PGDATESTYLE=ISO
PGTZ=JST
PGCLIENTENCODING=EUC-JP
export PGHOST PGPORT PGDATABASE PGUSER PGPASSWORD PGDATESTYLE PGTZ PGCLIENTENCODING |
|
Costanti Predefinite
Queste costanti sono definite da questa estensione e
sono disponibili solo se l'estensione � stata compilata
nel PHP o se � stata caricata dinamicamente a runtime.
Esempi
A partire da PostgreSQL 7.1.0, il tipo di dato text ha 1GB come dimensione
massima. Nelle versioni pi� vecchie di PostgreSQL il tipo di dato text � limitato dalla dimensione
del block. (Default 8KB. Massimo 32KB, specificato al momento della compilazione)
Per usare l'interfaccia large object (lo), � necessario includerla entro
un blocco di una transazione. Un blocco di transazione inizia con un
comando SQL BEGIN e se la
transazione � stata valida, termina con COMMIT o
END. Se la transazione fallisce, essa
deve venire chiusa con ROLLBACK o
ABORT.
Esempio 2. Utilizzare Large Objects <?php
$database = pg_connect ("dbname=jacarta");
pg_query ($database, "begin");
$oid = pg_lo_create ($database);
echo "$oid\n";
$handle = pg_lo_open ($database, $oid, "w");
echo "$handle\n";
pg_lo_write ($handle, "dati large object");
pg_lo_close ($handle);
pg_query ($database, "commit");
?> |
|
Non chiudere la risorsa di connessione prima di aver chiuso la risorsa
large object.
User Contributed Notes Funzioni PostgreSQL |
|
[email protected]
02-Mar-2000 07:36 |
|
If you want to see all the objects in a database, you can find that
information in the pg_class table.
SELECT * FROM
pg_class;
Now this is going to be kind of long and complex, to see
how psql command handles the \d and other things. use the syntax. psql -E
<Database>, ie psql -E mydatabase
What this will do is show
the SQL command used for everything. So when you type a \d or something,
it shows the SQL query used for the result.
|
|
18-May-2000 12:29 |
|
Ways of getting the value of a generated serial are discussed at
|
|
jdb30 at cornell.edu
06-Dec-2000 07:08 |
|
For further reading on PostgreSQL, see:
|
|
[email protected]
15-Apr-2001 08:11 |
|
If you want to extract data from select statements, you need to store the
result index, and then apply pg_result to that value. Basically, do
this
$resultIdx = pg_query ($database, "select * from
tablename");
$mySelect = pg_fetch_result($resultIdx, 0, 0); //
gets column 0 of tuple 0
echo("My select:
[".$mySelect."]");
I'm new to php and had to do
some fiddling around to work this out. It's reasonably elementary, but not
demonstrated by the examples on these pages. Hopefully it will come in
useful to someone else.
|
|
passion at monkey dot org
28-Jun-2001 01:53 |
|
I've tried to mimic the following mysql database connection functions for
postgres.
These
are assuming that you're passing in $link as the result from
pg_connect:
function pg_list_dbs($link)
{
$sql =
'SELECT datname FROM pg_database';
return (pg_query($link,
$sql));
}
function pg_list_tables($link)
{
$sql = "SELECT relname FROM pg_class WHERE relname !~
'^pg_'";
return (pg_query($link, $sql));
}
|
|
[email protected]
09-Jul-2001 11:36 |
|
The best way to find the separated list of tables, sequences, keys etc
is:
SELECT relname FROM pg_class WHERE relkind='<value>'
AND relname !~ '^pg_';
<value> takes:
i for keys,
r
for relations,
S for sequences
Note that all tables names
that begins with 'pg_' are PostgreSQL internal tables (this explain why I
use AND relname !~ '^pg_' condition).
|
|
[email protected]
31-Jul-2001 09:45 |
|
in debian, you need to include
dl('pgsql.so')
in all
your scripts of php4. I think its different for PHP3 -
dl('libpg.so')
[Editor's Note]
Debian users should
be able to use "extension" directive to load pgsql.so. This
method is prefered method if you use pgsql module always.
|
|
[email protected]
15-Sep-2001 09:11 |
|
I tried compiling PHP from source with PostgreSQL support (./configure
--with-pgsql=/usr/local/pgsql) and ran into a bunch of problems when
trying to 'make'. The problem was that some of the PostgreSQL headers were
not installed by default when I installed PostgreSQL from source. When
installing PostgreSQL make sure you 'make install-all-headers' after you
'make install'.
|
|
[email protected]
04-Feb-2002 02:46 |
|
Nice to know fact that I didn't find documented here.
PHP will
return values of PostgreSQL boolean datatype as single character strings
"t" and "f", not PHP true and
false.
[Editor's Note]
't' or 'f' is valid boolean expression
for PostgreSQL.
All values from PostgreSQL are strings, since
PostgreSQL integer, float may be much larger than PHP's native int, double
can handle. PostgreSQL array is not supported.
|
|
[email protected]
22-Aug-2002 03:49 |
|
My talk on PHP and PostgreSQL which I presented at O'Reilly OSCON 2002 is
now online.
|
|
|
| |