- Working with Connections and Data Sources
- Using PostgreSQL and PHP
- Select, Insert, Update, and Delete Queries
- Other Database Functions
Other Database Functions
Many other database functions can be performed other than the basic queries that were demonstrated earlier. The PHP interface to PostgreSQL enables you to specify how the information is returned from the database. You can return information as an array by using pg_Fetch_Array() or pg_Fetch_Row(). You can return information as an object by using pg_Fetch_Object(). Other functions will return the size and type of the field or column or the name or number of fields. The description and use of each of these functions is included in Chapter 10, "Database Extensions." Many useful bits of information and properties can be returned through the use of these database functions. A detailed description with examples of each of these functions is beyond the scope of this book, but each is fairly straightforward and should be easy to implement.
Error Messages
It is always a good idea to capture and print all error messages. The PHP interface to PostgreSQL includes a function that allows for this functionality. This function is pg_errormessage() and it accepts the database connection handle and returns the string of the error. This string is the text of the error message that is generated from the database back end.
The following example illustrates how to use the pg_errormessage() function to return an error string. The pg_Connect() function in the example attempts to connect to a database that does not exist. If the function returns an error (as it does in this case), the connection handle is used in the pg_errormessage() function to echo the string to the browser.
<html> <head> <title>Generate an Error</title> </head> <body> <? // Generate an error connecting to a Postgres Database $conn = pg_Connect("localhost", "5432", "", "", "testerror"); if (!$conn) {echo pg_errormessage($conn); exit;} ?> </body> </html>
This example prints out the following error message to the browser window:
FATAL 1: Database testerror does not exist in pg_database
Transaction Management
As your database-enabled Web applications become bigger and more complex, you will find the need to lock tables and manage the transactions on the database to eliminate data corruption. When two queries access the same tables to perform any operation other than a simple select query, there is the possibility for the data to become corrupted.
The following simple example illustrates how to set up a transaction, perform the query or set of queries, and then commit the transaction. If the transaction fails at any point, the entire sequence is rolled back.
<html> <head> <title>Managing the Transaction</title> </head> <body> <? // Connect to the Postgres Database $conn = pg_Connect("localhost", "5432", "", "", "test"); if (!$conn) {echo "An database connection error occurred.\n"; exit;} // Begin the Transaction $result = pg_exec($conn, "begin work;"); if (!$result) {echo "An error occurred beginning the transaction.\n"; exit;} // Lock the table $result = pg_exec($conn, "lock contacts;"); if (!$result) {echo "An error occurred locking the contacts table.\n"; exit;} // Insert the static values into the database $result = pg_Exec($conn,"INSERT INTO contacts VALUES (NEXTVAL('c'), 'Test Name','Test Address','Test City','TS','11111','111.222.3333', '444.555.6666','me@email.com');"); if (!$result) {echo "An INSERT query error occurred.\n"; exit;} // Get the last record inserted $oid = pg_getlastoid($result); if (!$oid) {echo "An OID error occurred.\n"; exit;} // Select the record that was last entered $result = pg_Exec($conn,"SELECT cid FROM contacts WHERE oid=$oid;"); if (!$result) {echo "A SELECT query error occurred.\n"; exit;} // Place the result into the variable $CID $CID = pg_Result($result, 0, "cid"); if (!$CID) {echo "There is a problem returning the Contact ID.\n"; exit;} // Print out the Contact ID else { echo "The record was successfully entered and the Contact ID is: $CID \n";} // Commit the transaction pg_exec($conn, "commit work;"); // End the transaction pg_exec($conn, "end work;"); // Free the result pg_FreeResult($result);< // Close the connection pg_Close($conn); ?> </body> </html>
Notice that the new portions of this insert query include a BEGIN statement that denotes the start of the transaction. The transaction in this example is named work. The next statement is the LOCK statement. This particular statement locks the entire table while the transaction is being performed. There are many types of locksboth table level and row levelthat can be placed on a database while transactions are being performed. A discussion of the pros and cons of each of these types of locks is beyond the scope of this book. Please consult your database documentation for a description of the locks that are available.
In the preceding example, the next bit of code performs the database insert and query. This section of code is very elementary, but it is included for illustration purposes. The next two pg_exec() statements end the transaction; the first commits the work transaction, and the second ends the transaction.
Persistent Database Connections
One of the biggest performance increases that you can make to your database application is to use persistent connections. The establishment of a database connection can often take 90% of the total time of the query. In other words, if you can reuse database connections, your application can make all the queries 90% faster. If your application is database intensive, the overall speed of the application can be affected in a positive manner by using persistent connections.
The pg_pConnect() function is the mechanism that you can use to make a persistent database connection. When a connection to the database is requested, PHP checks for an existing connection. If one exists, PHP does not open another connection but reuses the existing connection. If a connection does not exist, PHP opens one.
From the user's perspective, the pg_pConnect() function works exactly the same as its nonpersistent counterpart, pg_connect().
Large Objects
Sometimes it might be necessary to store binary objects in a database. PostgreSQL enables you to do this through the use of inversion of large objects. This is the method used to store images, PDF files, and entire Web pages in a database. The use of large objects requires the database table to be set up to accept an object identifier (OID). The create table statement looks something like this:
create table contacts ( cid int4 DEFAULT NEXTVAL('a'), name char (50), address char (50), city char (50), state char (2), zip char (10), phone char (25), fax char (25), email char (50), resume oid, primary key (cid));
This script creates a contacts table with the usual information and another item called resume that is of type oid.
To enter data in this table, including the resume field, the insert query looks like this:
INSERT INTO contacts VALUES (NEXTVAL('c'),'Test Name','Test Address', 'Test City', 'TS','11111','111.222.3333','444.555.6666','me@email.com', lo_import('/resumes/rcox.doc'));
This query takes a file named rcox.doc from the /resumes directory and imports it into the database as a large object.
Similarly, a select query to pull the resume out of the database looks like this:
SELECT cid, name, address, city, state, zip, phone, fax, email, lo_export(resume,'/resumes/rcox.doc') FROM contacts WHERE cid=101;
This exports the resume from the database, places it in the /resumes directory, and names the file rcox.doc.
The following example illustrates how to use the PHP large object functionality to insert a large object into the database:
<html> <head> <title>Large Objects</title> </head> <body> <? // Connect to the Postgres Database $conn = pg_Connect("localhost", "5432", "", "", "test"); if (!$conn) {echo "An database connection error occurred.\n"; exit;}< // Begin the Transaction $result = pg_exec($conn, "begin;"); if (!$result) {echo "An error occurred beginning the transaction.\n"; exit;} // Lock the table $oid = pg_locreate($conn); echo ("The Large Object is created with Object ID = $oid<br>"); $handle = pg_loopen ($conn, $oid, "w"); echo ("The Large Object is opened in Write mode with Handle = $handle<br>"); pg_lowrite ($handle, "/resumes/rcox.doc"); pg_loclose ($handle); pg_exec ($conn, "INSERT INTO contacts VALUES (NEXTVAL('c'),'Test Name', 'Test Address','Test City','TS','11111','111.222.3333', '444.555.6666','me@email.com', $oid);"); pg_exec ($conn, "commit;"); pg_exec ($conn, "end;"); // Free the result pg_FreeResult($result); // Close the connection pg_Close($conn); ?> </body> </html>
The output of this script should look something like this:
The Large Object is created with Object ID = 24097 The Large Object is opened in Write mode with Handle = Resource id #3
The ordinary Web programmer would not use large objects on a regular basis. Instead of directly storing binaries in the database, it is usually preferable to store the link to the file and allow the binary to reside on the operating system's filesystem. Storing only the link allows the database to stay lean, and when the information is served to the Web browser, the Web server can include the path to the binary on the filesystem.