| source of /viewer/database_mysql.php
The MySQL wrapper functions <?php/*Copyright 2008 Josh Heidenreich This file is part of Pelzini. Pelzini is free software: you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation, either version 3 of the License, or(at your option) any later version. Pelzini is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details. You should have received a copy of the GNU General Public Licensealong with Pelzini.  If not, see <http://www.gnu.org/licenses/>.*/ /** * The MySQL wrapper functions * @package Viewer * @author Josh Heidenreich * @since 0.2 **/  /** * Connects to the MySQL database **/function db_connect($settings){    global $db_connection;         die('Unable to connect to database because "mysql" extension is not available');    }         $settings['server'],        $settings['username'],        $settings['password']    ); }  /** * Makes a query to the MySQL database **/function db_query($q){}  /** * Escapses a string for use by the MySQL database **/function db_escape($str){}  /** * Quotes a string as nessasary for use by hte MySQL database * The result will be different depending on the type of the input. *  - a number will be left as is *  - a string will be quoted *  - a null value will be returned as NULL **/function db_quote($str){    if ($str === null) {        return 'NULL';         return $str;     } else {    }}  /** * Fetches a MySQL result set as an associative array **/function db_fetch_assoc($res){}  /** * Returns the number of rows in a MySQL result set **/function db_num_rows($res){}  /** * Returns the number of rows affected by the last MySQL query that was executed **/function db_affected_rows($res){}  /** * Returns the last unique ID generated by a query **/function db_insert_id(){}  ?> 
 |