| <?php
/**
 *  @file description.txt
 *  
 *  @brief This package can access MySQL databases using the MySQLi extension.
 *  
 *  The base class can establish connections to MySQL servers, set the character set, select the database and retrieve any error messages.
 *  
 *  There is a subclass that can execute queries, retrieve the query results, retrieve the number of result rows, get the last inserted record identifier and the number of rows affected by the query.
 *  
 *  There is another subclass that can execute general purpose query functions like executing query and retrieve the whole results into an array, retrieve a single result row, retrieve a single result row field, insert, update and delete records given parameters for the tables, fields, field values and conditions, get the status and fields of a table, etc..
 *  
 *  Author:	Frank Hartung, City: Kiel, Country: DE-Germany
 *  Base name:	database-interface
 *  Description:Access MySQL databases using the MySQLi extension
 *  Version:	-
 *  PHP version:5.3
 *  License:	Free for non-commercial use
 *  namespace: 	fhDatabaseInterface
 *  classfile:	class_namespace_fhDatabaseInterface.php
 *  Reference:	http://www.phpclasses.org/package/8491-PHP-Access-MySQL-databases-using-the-MySQLi-extension.html
 *  Composer:	http://www.phpclasses.org/package_repositories.html?package=8491
 *  Support:	http://www.phpclasses.org/discuss/package/8491/
 *  Authorlink:	http://www.phpclasses.org/browse/author/196934.html
 */
 |