|
PostgreSQL FunctionsPostgreSQL database is Open Source product and available without cost. Postgres, developed originally in the UC Berkeley Computer Science Department, pioneered many of the object-relational concepts now becoming available in some commercial databases. It provides SQL92/SQL99 language support, transactions, referential integrity, stored procedures and type extensibility. PostgreSQL is an open source descendant of this original Berkeley code. To use PostgreSQL support, you need PostgreSQL 6.5 or later, PostgreSQL 8.0 or later to enable all PostgreSQL module features. PostgreSQL supports many character encodings including multibyte character encoding. The current version and more information about PostgreSQL is available at » http://www.postgresql.org/ and the » PostgreSQL Documentation.
In order to enable PostgreSQL support,
The behaviour of these functions is affected by settings in Table 269. PostgreSQL configuration options
Here's a short explanation of the configuration directives.
There are two resource types used in the PostgreSQL module. The first one is the link identifier for a database connection, the second a resource which holds the result of a query. The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or dynamically loaded at runtime.
Note:
Not all functions are supported by all builds. It depends on your libpq (The PostgreSQL C client library) version and how libpq is compiled. If PHP PostgreSQL extensions are missing, then it is because your libpq version does not support them.
Note:
Most PostgreSQL functions accept connection as
the first optional parameter. If it is not provided, the last opened
connection is used. If it doesn't exist, functions return
Note:
PostgreSQL automatically folds all identifiers (e.g. table/column names) to lower-case values at object creation time and at query time. To force the use of mixed or upper case identifiers, you must escape the identifier using double quotes ("").
Note:
PostgreSQL does not have special commands for fetching database schema
information (eg. all the tables in the current database). Instead, there
is a standard schema named This simple example shows how to connect, execute a query, print resulting rows and disconnect from a PostgreSQL database. Example 1901. PostgreSQL extension overview example<?php Table of Contents
Code Examples / Notes » ref.pgsqladaml
Yes, PHP does support stored procedures You have to add "select" before the name of the procedure, just like that: $result = pg_querry($conn, "SELECT procedure_x($aa)"); if a procedure returns a cursor you do something like that: $result = pg_query($conn, "SELECT procedure_x('rcursor'); FETCH ALL IN rcursor"); willowcatkin
There is an example: <?php /* * Define PostgreSQL database server connect parameters. */ define('PGHOST','10.0.0.218'); define('PGPORT',5432); define('PGDATABASE','example'); define('PGUSER', 'root'); define('PGPASSWORD', 'nopass'); define('PGCLIENTENCODING','UNICODE'); define('ERROR_ON_CONNECT_FAILED','Sorry, can not connect the database server now!'); /* * Merge connect string and connect db server with default parameters. */ pg_pconnect('host=' . PGHOST . ' port=' . PGPORT . ' dbname=' . PGDATABASE . ' user=' . PGUSER . ' password=' . PGPASSWORD); /* * generate sql statements to call db-server-side stored procedure(or function) * @parameter string $proc stored procedure name. * @parameter array $paras parameters, 2 dimensions array. * @return string $sql = 'select "proc"(para1,para2,para3);' * @example pg_prepare('userExists', * array( * array('userName','chin','string'), * array('userId','7777','numeric') * ) * ) */ function pg_prepare($proc, $paras) { $sql = 'select "' . $proc . '"('; $sql .= $paras[0][2] == 'numeric' ? $paras[0][1] : "'" . str_replace("'","''",$paras[0][1]) . "'"; $len = count($paras); for ($i = 1; $i < $len; $i ++) { $sql .= ','; $sql .= $paras[$i][2] == 'numeric' ? $paras[$i][1] : "'" . str_replace("'","''",$paras[$i][1]) . "'"; } $sql .= ');'; return $sql; } ?> hubert
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). anis_wn
Setting up PostgreSQL for higher security PHP connection. Case: We want to connect to PostgreSQL database using username and password supplied by webuser at login time. Fact (Linux): Apache (perhaps other servers, too) running the server as (default to) apache user account. So if you connect to PostgreSQL using default user, apache will be assingned for it. If you hard code the user and password in your PHP script, you'll loose security restriction from PostgreSQL. Solution: (You are assumed to have enough privilege to do these things, though) 1. Edit pg_hba.conf to have the line like the one below host db_Name [web_server_ip_address] [ip_address_mask] md5 2. Add to you script the login page that submits username and password. 3. Use those information to login to PostgreSQL like these... <? $conn = "host=$DBHost port=$DBPort dbname=$DBName ". "user='{$_POST['dbUsername']}' password='{$_POST['dbPassword']}'"; $db = pg_connect ($conn); [your other codes go here...] ?> 4. You must add users in PostgreSQL properly. 5. For your convenience, you can store the username and password to $_SESSION variable. Good luck. Anis WN daniel
Running RedHat Linux and Apache with suexec enabled you must include pgsql.so on each .php file using dl("pgsql.so") and remove "extension=pgsql.so" from php.ini, otherwise Apache (httpd) will not start.
12-mar-2007 05:28
Quick and dirty emulation of the mysql_select_db () function for Postgres: <?php function pg_select_db ($dbName) { $query = '\connect '.pg_escape_string ($dbName); if ($result = pg_query ($query)) return (true); else return (false); } ?> Obviously not a great example, but it at least demonstrates how to implement mysql_select_db functionality when using Postgres. Or you could always use schemas :) mystran
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. swm
My talk on PHP and PostgreSQL which I presented at O'Reilly OSCON 2002 is now online. http://www.alcove.com.au/oreilly/ 21-oct-2006 06:10
Lots of advice on stored procedures didn't work for me. This did: <?php $response = pg_query( $connection, "BEGIN; DECLARE s CURSOR FOR SELECT get_consumer('harry'); FETCH ALL IN s; END;" ); ?> ..where harry looks like this: CREATE OR REPLACE FUNCTION get_consumer( varchar ) RETURNS refcursor AS ' DECLARE _name ALIAS FOR $1; r refcursor; BEGIN OPEN r FOR SELECT name FROM consumer WHERE consumer.name = _name ; RETURN r; END ' LANGUAGE 'plpgsql'; bleach
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. !spamcraig
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
I've tried to mimic the following mysql database connection functions for postgres. http://www.php.net/manual/en/function.mysql-list-dbs.php http://www.php.net/manual/en/function.mysql-list-tables.php 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)); } abondi
I've found another function to mimic the following mysql list tables function (http://www.php.net/manual/en/function.mysql-list-tables.php) that's more useful for my target: function pg_list_tables() { $sql = "SELECT a.relname AS Name FROM pg_class a, pg_user b WHERE ( relkind = 'r') and relname !~ '^pg_' AND relname !~ '^sql_' AND relname !~ '^xin[vx][0-9]+' AND b.usesysid = a.relowner AND NOT (EXISTS (SELECT viewname FROM pg_views WHERE viewname=a.relname));"; return(pg_query($conn, $sql)); } saberit
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'.
anonymous
I just wanted to add to my previous post I've got the system up and running. Environment: Windows XP, Apache 1.3.23, Php 4.3 RC2, PostGreSQL beta4 native windows build Installation was fairly easy: 1. read the readme.txt 2. edit the setenv.bat as described in readme 3. run 'initdb' all execs are in /bin help is accessed like <command> --help 4. Start the psql deamon - you may want to create a batch file like 'D:\postgres_beta4\bin\postmaster -h localhost -D D:/postgres_beta4/data' --deamon should be up and running now-- You can login into a shell from a console like 'psql -h localhost -d <username>' You must load the postgresql extension by editing the php.ini and restarting apache in order to access psql with php. And one final not: when running $dbconn = pg_connect ("host=localhost port=5432 dbname=$dbname user=$user"); remember that $user and or $dbname is CASESENSITIVE. Oh yeah, I created the data dir manually - don't know whether that was necessary Grtz Vargo 1413
Here is some quick and dirty code to convert Postgres-returned arrays into PHP arrays. There's probably a billion bugs, but since I'm only dealing with variable-depth-and-length arrays of integers, it works for my needs. Most notably, any data that might have commas in it won't work right... <?php function PGArrayToPHPArray($pgArray) { $ret = array(); $stack = array(&$ret); $pgArray = substr($pgArray, 1, -1); $pgElements = explode(",", $pgArray); ArrayDump($pgElements); foreach($pgElements as $elem) { if(substr($elem,-1) == "}") { $elem = substr($elem,0,-1); $newSub = array(); while(substr($elem,0,1) != "{") { $newSub[] = $elem; $elem = array_pop($ret); } $newSub[] = substr($elem,1); $ret[] = array_reverse($newSub); } else $ret[] = $elem; } return $ret; } ?> chris kl
Here is a better array parser for PHP. It will work with 1-d arrays only. Unlike the example below it will work in all cases. /** * Change a db array into a PHP array * @param $arr String representing the DB array * @return A PHP array */ function phpArray($dbarr) { // Take off the first and last characters (the braces) $arr = substr($dbarr, 1, strlen($dbarr) - 2); // Pick out array entries by carefully parsing. This is necessary in order // to cope with double quotes and commas, etc. $elements = array(); $i = $j = 0; $in_quotes = false; while ($i < strlen($arr)) { // If current char is a double quote and it's not escaped, then // enter quoted bit $char = substr($arr, $i, 1); if ($char == '"' && ($i == 0 || substr($arr, $i - 1, 1) != '\\')) $in_quotes = !$in_quotes; elseif ($char == ',' && !$in_quotes) { // Add text so far to the array $elements[] = substr($arr, $j, $i - $j); $j = $i + 1; } $i++; } // Add final text to the array $elements[] = substr($arr, $j); // Do one further loop over the elements array to remote double quoting // and escaping of double quotes and backslashes for ($i = 0; $i < sizeof($elements); $i++) { $v = $elements[$i]; if (strpos($v, '"') === 0) { $v = substr($v, 1, strlen($v) - 2); $v = str_replace('\\"', '"', $v); $v = str_replace('\\\\', '\\', $v); $elements[$i] = $v; } } return $elements; } 74012 dot 2773
for just a list of tables, this works with postgresql-7.2.1: function pg_list_tables($db) { $sql = "select relname from pg_stat_user_tables order by relname;"; return pg_query($db, $sql); } 17-nov-2006 12:30
Chris KL: Will parse well {"\\"}? The second " will be treat as escaped while it shoudn't...
fmonteiro11
Another good source of knowledge is http://www.faqs.org/docs/ppbook/book1.htm
raja shahed
A very good tutorial for Windows users' is here http://www.sitepoint.com/article/use-postgresql-php-windows. Herr Johan Faxer Shows also how to install Cygwin.
|
Change Language.NET Functions Apache-specific Functions Alternative PHP Cache Advanced PHP debugger Array Functions Aspell functions [deprecated] BBCode Functions BCMath Arbitrary Precision Mathematics Functions PHP bytecode Compiler Bzip2 Compression Functions Calendar Functions CCVS API Functions [deprecated] Class/Object Functions Classkit Functions ClibPDF Functions [deprecated] COM and .Net (Windows) Crack Functions Character Type Functions CURL Cybercash Payment Functions Credit Mutuel CyberMUT functions Cyrus IMAP administration Functions Date and Time Functions DB++ Functions Database (dbm-style) Abstraction Layer Functions dBase Functions DBM Functions [deprecated] dbx Functions Direct IO Functions Directory Functions DOM Functions DOM XML Functions enchant Functions Error Handling and Logging Functions Exif Functions Expect Functions File Alteration Monitor Functions Forms Data Format Functions Fileinfo Functions filePro Functions Filesystem Functions Filter Functions Firebird/InterBase Functions Firebird/Interbase Functions (PDO_FIREBIRD) FriBiDi Functions FrontBase Functions FTP Functions Function Handling Functions GeoIP Functions Gettext Functions GMP Functions gnupg Functions Net_Gopher Haru PDF Functions hash Functions HTTP Hyperwave Functions Hyperwave API Functions i18n Functions IBM Functions (PDO_IBM) IBM DB2 iconv Functions ID3 Functions IIS Administration Functions Image Functions Imagick Image Library IMAP Informix Functions Informix Functions (PDO_INFORMIX) Ingres II Functions IRC Gateway Functions PHP / Java Integration JSON Functions KADM5 LDAP Functions libxml Functions Lotus Notes Functions LZF Functions Mail Functions Mailparse Functions Mathematical Functions MaxDB PHP Extension MCAL Functions Mcrypt Encryption Functions MCVE (Monetra) Payment Functions Memcache Functions Mhash Functions Mimetype Functions Ming functions for Flash Miscellaneous Functions mnoGoSearch Functions Microsoft SQL Server Functions Microsoft SQL Server and Sybase Functions (PDO_DBLIB) Mohawk Software Session Handler Functions mSQL Functions Multibyte String Functions muscat Functions MySQL Functions MySQL Functions (PDO_MYSQL) MySQL Improved Extension Ncurses Terminal Screen Control Functions Network Functions Newt Functions NSAPI-specific Functions Object Aggregation/Composition Functions Object property and method call overloading Oracle Functions ODBC Functions (Unified) ODBC and DB2 Functions (PDO_ODBC) oggvorbis OpenAL Audio Bindings OpenSSL Functions Oracle Functions [deprecated] Oracle Functions (PDO_OCI) Output Control Functions Ovrimos SQL Functions Paradox File Access Parsekit Functions Process Control Functions Regular Expression Functions (Perl-Compatible) PDF Functions PDO Functions Phar archive stream and classes PHP Options&Information POSIX Functions Regular Expression Functions (POSIX Extended) PostgreSQL Functions PostgreSQL Functions (PDO_PGSQL) Printer Functions Program Execution Functions PostScript document creation Pspell Functions qtdom Functions Radius Rar Functions GNU Readline GNU Recode Functions RPM Header Reading Functions runkit Functions SAM - Simple Asynchronous Messaging Satellite CORBA client extension [deprecated] SCA Functions SDO Functions SDO XML Data Access Service Functions SDO Relational Data Access Service Functions Semaphore SESAM Database Functions PostgreSQL Session Save Handler Session Handling Functions Shared Memory Functions SimpleXML functions SNMP Functions SOAP Functions Socket Functions Standard PHP Library (SPL) Functions SQLite Functions SQLite Functions (PDO_SQLITE) Secure Shell2 Functions Statistics Functions Stream Functions String Functions Subversion Functions Shockwave Flash Functions Swish Functions Sybase Functions TCP Wrappers Functions Tidy Functions Tokenizer Functions Unicode Functions URL Functions Variable Handling Functions Verisign Payflow Pro Functions vpopmail Functions W32api Functions WDDX Functions win32ps Functions win32service Functions xattr Functions xdiff Functions XML Parser Functions XML-RPC Functions XMLReader functions XMLWriter Functions XSL functions XSLT Functions YAZ Functions YP/NIS Functions Zip File Functions Zlib Compression Functions |