php-residence 0.7.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News php-residence 0.7.2 (Default branch)
# 1  
Old 12-26-2007
php-residence 0.7.2 (Default branch)

Image php-residence is designed to manage weekly or daily rental of house apartments or small hotel rooms. It uses a PostgreSQL or MySQL database as a backend. Reservations can be assigned to an apartment automatically with user-defined rules. License: GNU General Public License (GPL) Changes:
This release fixes a bug in version 0.7.1 that made you lose reservations imported when creating a new year. The graphics theme has been updated.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
PG_TRACE(3)															       PG_TRACE(3)

pg_trace - Enable tracing a PostgreSQL connection

SYNOPSIS
bool pg_trace (string $pathname, [string $mode = "w"], [resource $connection]) DESCRIPTION
pg_trace(3) enables tracing of the PostgreSQL frontend/backend communication to a file. To fully understand the results, one needs to be familiar with the internals of PostgreSQL communication protocol. For those who are not, it can still be useful for tracing errors in queries sent to the server, you could do for example grep '^To backend' trace.log and see what queries actually were sent to the PostgreSQL server. For more information, refer to the PostgreSQL Documentation. PARAMETERS
o $pathname - The full path and file name of the file in which to write the trace log. Same as in fopen(3). o $mode - An optional file access mode, same as for fopen(3). o $connection - PostgreSQL database connection resource. When $connection is not present, the default connection is used. The default connection is the last connection made by pg_connect(3) or pg_pconnect(3). RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 pg_trace(3) example <?php $pgsql_conn = pg_connect("dbname=mark host=localhost"); if ($pgsql_conn) { pg_trace('/tmp/trace.log', 'w', $pgsql_conn); pg_query("SELECT 1"); pg_untrace($pgsql_conn); // Now /tmp/trace.log will contain backend communication } else { print pg_last_error($pgsql_conn); exit; } ?> SEE ALSO
fopen(3), pg_untrace(3). PHP Documentation Group PG_TRACE(3)