PHP: PostgreSQL f�ggv�nyek - Manual
PHP  
downloads | documentation | faq | getting help | mailing lists | | php.net sites | links 
search for in the  
previousposix_unamepg_affected_rowsnext
Last updated: Fri, 30 Aug 2002
view the printer friendly version or the printer friendly version with notes or change language to English | Brazilian Portuguese | Chinese | Czech | Dutch | Finnish | French | German | Italian | Japanese | Korean | Polish | Romanian | Russian | Spanish | Swedish | Turkish

LXXX. PostgreSQL f�ggv�nyek

Postgres, amit eredetileg a UC Berkeley Computer Science Department fejlesztett ki, �tt�r� volt az objektum-rel�ci�s adatmodellek ter�let�n, �s most el�rhet�v� v�lik t�bb kereskedelmi adatb�zisban is. T�mogatja az SQL92/SQL3 nyelv haszn�lat�t, tranzakci�k integrit�s�t �s a t�pusok kiterjeszthet�s�g�t. A PostgreSQL egy public-domain, ny�lt forr�s� lesz�rmazottja ennek az eredeti Berkeley k�dnak.

A PostgreSQL ingyenes. A leg�jabb verzi� a c�men �rhet� el.

A 6.3 verzi� �ta (03/02/1998) a PostgreSQL unix socketeket haszn�l. A lenti t�bl�zat mutatja az �j kapcsolatteremt�si lehet�s�geket. Ez a socket a /tmp/.s.PGSQL.5432 n�ven �rhet� el. Ezt az opci�t a postmaster parancs '-i' kapcsol�j�val �rheted el, a jelent�se pedig: "figyeld a TCP/IP socketeket is �gy, mint a unix socketeket".

T�bl�zat 1. Postmaster �s a PHP

PostmasterPHP�llapot
postmaster &pg_connect("", "", "", "", "dbname");OK
postmaster -i &pg_connect("", "", "", "", "dbname");OK
postmaster &pg_connect("localhost", "", "", "", "dbname"); 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.php3 on line 20. vagyis: Nem lehet kapcsol�dni a PostgreSQL szerverhez: a connectDB() h�v�s meghi�sult. Fut a postmaster, �s fogadja a TCP/IP kapcsolatokat (-i) a helyi g�pen az 5432-es porton? a /el�r�si_�t/a/file.php3 a 20-as sorban
postmaster -i &pg_connect("localhost", "", "", "", "dbname");OK

A k�vetkez�k�pp is kezdhetsz kapcsolatot: $conn = pg_Connect("host=localhost port=5432 dbname=chris");

Annak �rdek�ben, hogy haszn�lhassunk nagy objektum fel�letet (lo), sz�ks�ges az eg�szet egy tranzakci�s blokkba foglalni. A tranzakci�s blokk egy begin-nel kezd�dik, �s ha a tranzakci� �rv�nyes, egy commit-tal vagy egy end-del v�gz�dik. Ha a tranzakci� meghi�sul, akkor rollback vagy abort paranccsal kell v�gz�dnie.

P�lda 1. Nagy objektumok haszn�lata

<?php
    $database = pg_Connect ("", "", "", "", "jacarta");
    pg_exec ($database, "begin");
    $oid = pg_locreate ($database);
    echo ("$oid\n");
    $handle = pg_loopen ($database, $oid, "w");
    echo ("$handle\n");
    pg_lowrite ($handle, "gaga");
    pg_loclose ($handle);
    pg_exec ($database, "commit");
?>

Tartalom
pg_affected_rows -- Returns number of affected records(tuples)
pg_cancel_query --  Cancel async query
pg_client_encoding --  Get the client encoding
pg_Close -- lez�r egy PostgreSQL kapcsolatot
pg_Connect -- megnyit egy kapcsolatot
pg_connection_busy --  Get connection is busy or not
pg_connection_reset --  Reset connection (reconnect)
pg_connection_status --  Get connection status
pg_convert --  Convert associative array value into suitable for SQL statement.
pg_copy_from --  Insert records into a table from an array
pg_copy_to --  Copy a table to an array
pg_DBname -- adatb�zis neve
pg_delete --  Delete records.
pg_end_copy -- Sync with PostgreSQL backend
pg_escape_bytea --  Escape binary for bytea type
pg_escape_string --  Escape string for text/char type
pg_Fetch_Array -- beolvas egy sort egy t�mbbe
pg_Fetch_Object -- sor beolvas�sa objektumk�nt
pg_fetch_result -- Returns values from a result resource
pg_Fetch_Row -- k�vetkez� sor beolvas�sa numerikusan indexelt t�mbbe
pg_field_is_null -- Test if a field is NULL
pg_field_name -- Returns the name of a field
pg_field_num -- Returns the field number of the named field
pg_field_prtlen -- Returns the printed length
pg_field_size --  Returns the internal storage size of the named field
pg_field_type --  Returns the type name for the corresponding field number
pg_free_result -- Free result memory
pg_get_result --  Get asynchronous query result
pg_Host -- A hostnevet adja vissza
pg_insert --  Insert array into table.
pg_last_error -- Get the last error message string of a connection
pg_last_notice --  Returns the last notice message from PostgreSQL server
pg_last_oid -- Returns the last object's oid
pg_lo_close -- Close a large object
pg_lo_create -- Create a large object
pg_lo_export -- Export a large object to file
pg_lo_import -- Import a large object from file
pg_lo_open -- Open a large object
pg_lo_read_all --  Read a entire large object and send straight to browser
pg_lo_read -- Read a large object
pg_lo_seek --  Seeks position of large object
pg_lo_tell --  Returns current position of large object
pg_lo_unlink -- Delete a large object
pg_lo_write -- Write a large object
pg_metadata --  Get metadata for table.
pg_num_fields -- Returns the number of fields
pg_num_rows -- Returns the number of rows
pg_Options -- Returns options
pg_pConnect --  Tart�s adatb�zis-kapcsolatot hoz l�tre
pg_Port -- Melyik porton van a kapcsolat
pg_put_line -- Send a NULL-terminated string to PostgreSQL backend
pg_query -- Execute a query
pg_result_error --  Get error message associated with result
pg_result_status --  Get status of query result
pg_select --  Select records.
pg_send_query --  Send asynchronous query
pg_set_client_encoding --  Set the client encoding
pg_trace -- PostgreSQL szerver kapcsolatot k�vet nyomon
pg_tty -- A tty nev�t adja vissza
pg_untrace -- Abbahagyja az adott kapcsolat nyomk�vet�s�t
pg_update --  Update table.
User Contributed Notes
PostgreSQL f�ggv�nyek
add a note about notes
[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.


add a note about notes
previousposix_unamepg_affected_rowsnext
Last updated: Fri, 30 Aug 2002
show source | credits | stats | mirror sites
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by:
Last updated: Wed Sep 4 00:18:56 2002 CEST