Source for file querysim.php
Documentation is available at querysim.php
// vim: set et ts=4 sw=4 fdm=marker:
// +----------------------------------------------------------------------+
// +----------------------------------------------------------------------+
// | Copyright (c) 1998-2004 Manuel Lemos, Tomas V.V.Cox, |
// | Stig. S. Bakken, Lukas Smith |
// | All rights reserved. |
// +----------------------------------------------------------------------+
// | MDB2 is a merge of PEAR DB and Metabases that provides a unified DB |
// | API as well as database abstraction for PHP applications. |
// | This LICENSE is in the BSD license style. |
// | Redistribution and use in source and binary forms, with or without |
// | modification, are permitted provided that the following conditions |
// | Redistributions of source code must retain the above copyright |
// | notice, this list of conditions and the following disclaimer. |
// | Redistributions in binary form must reproduce the above copyright |
// | notice, this list of conditions and the following disclaimer in the |
// | documentation and/or other materials provided with the distribution. |
// | Neither the name of Manuel Lemos, Tomas V.V.Cox, Stig. S. Bakken, |
// | Lukas Smith nor the names of his contributors may be used to endorse |
// | or promote products derived from this software without specific prior|
// | written permission. |
// | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
// | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
// | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
// | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
// | REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
// | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
// | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS|
// | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
// | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
// | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY|
// | WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
// | POSSIBILITY OF SUCH DAMAGE. |
// +----------------------------------------------------------------------+
// | Original QuerySim Concept & ColdFusion Author: Hal Helms |
// | <hal.helms@teamallaire.com> |
// | Bert Dawson <bdawson@redbanner.com> |
// +----------------------------------------------------------------------+
// | Original PHP Author: Alan Richmond <arichmond@bigfoot.com> |
// | David Huyck <b@bombusbee.com> |
// +----------------------------------------------------------------------+
// | Special note concerning code documentation: |
// | QuerySim was originally created for use during development of |
// | applications built using the Fusebox framework. (www.fusebox.org) |
// | Fusebox uses an XML style of documentation called Fusedoc. (Which |
// | is admittedly not well suited to documenting classes and functions. |
// | This short-coming is being addressed by the Fusebox community.) PEAR |
// | uses a Javadoc style of documentation called PHPDoc. (www.phpdoc.de) |
// | Since this class extension spans two groups of users, it is asked |
// | that the members of each respect the documentation standard of the |
// | other. So it is a further requirement that both documentation |
// | standards be included and maintained. If assistance is required |
// | please contact Alan Richmond. |
// +----------------------------------------------------------------------+
// $Id: querysim.php,v 1.9 2004/04/23 17:06:46 lsmith Exp $
<fusedoc fuse="querysim.php" language="PHP">
I take information and turn it into a recordset that can be accessed
through the PEAR MDB2 API. Based on Hal Helms' QuerySim.cfm ColdFusion
custom tag available at halhelms.com.
<property name="API" value="PEAR MDB2" />
<property name="version" value="0.2.1" />
<property name="status" value="beta" />
<history author="Hal Helms" email="hal.helms@teamallaire.com" type="Create" />
<history author="Bert Dawson" email="bdawson@redbanner.com" type="Update">
Extensive revision that is backwardly compatible but eliminates the
need for a separate .sim file.
<history author="Alan Richmond" email="arichmond@bigfoot.com" type="Create" date="10-July-2002">
Rewrote in PHP as an extention to the PEAR DB API.
connect, disconnect, query, fetchRow, freeResult,
numCols, numRows, getSpecialQuery
David Huyck (bombusbee.com) added ability to escape special
characters (i.e., delimiters) using a '\'.
Extended PEAR DB options[] for adding incoming parameters. Added
options: columnDelim, dataDelim, eolDelim
<history author="David Huyck" email="b@bombusbee.com" type="Update" date="19-July-2002">
Added the ability to set the QuerySim options at runtime.
'columnDelim' => ',', // Commas split the column names
'dataDelim' => '|', // Pipes split the data fields
'eolDelim' => chr(13).chr(10) // Carriage returns split the
DB_querysim(): set the default options when the
constructor method is called
_parseQuerySim($query): altered the parsing of lines, column
_empty2null: altered the way this function is called
<history author="Alan Richmond" email="arichmond@bigfoot.com" type="Update" date="24-July-2002">
Added error catching for malformed QuerySim text.
Bug fix _empty2null(): altered version was returning unmodified
PEAR compliant formatting, finished PHPDocs and added 'out' to
Broke up _parseQuerySim() into _buildResult() and _parseOnDelim()
to containerize duplicate parse code.
<history author="David Huyck" email="b@bombusbee.com" type="Update" date="25-July-2002">
Edited the _buildResult() and _parseOnDelim() functions to improve
reliability of special character escaping.
Re-introduced a custom setOption() method to throw an error when a
person tries to set one of the delimiters to '\'.
<history author="Alan Richmond" email="arichmond@bigfoot.com" type="Update" date="27-July-2002">
Added '/' delimiter param to preg_quote() in _empty2null() and
_parseOnDelim() so '/' can be used as a delimiter.
Added error check for columnDelim == eolDelim or dataDelim == eolDelim.
Renamed some variables for consistancy.
<history author="Alan Richmond" email="arichmond@bigfoot.com" type="Update" date="30-July-2002">
Removed private function _empty2null(). Turns out preg_split()
deals with empty elemants by making them zero length strings, just
what they ended up being anyway. This should speed things up a little.
_parseOnDelim() perform trim on line here, instead of in
_buildResult() remove call to _empty2null().
_empty2null() removed function.
<history author="Alan Richmond" email="arichmond@bigfoot.com" type="Update" date="1-Jan-2003">
connect, query, getColumnNames, numCols, valid, fetch,
numRows, free, fetchRow, nextResult, setLimit
Removed array_change_key_case() work around for <4.2.0 in
getColumnNames(), found it already done in MDB2/Common.php.
<history author="Alan Richmond" email="arichmond@bigfoot.com" type="Update" date="3-Feb-2003">
Changed default eolDelim to a *nix file eol, since we're trimming
the result anyway, it makes no difference for Windows. Now only
Mac file eols should need to be set (and other kinds of chars).
<note author="Alan Richmond">
Got WAY too long. See querysim_readme.txt for instructions and some
io section only documents elements of DB_result that DB_querysim uses,
adds or changes; see MDB2 and MDB2_Driver_Common for more info.
io section uses some elements that are not Fusedoc 2.0 compliant:
<file path="MDB2/Common.php" action="require_once" />
<object name="MDB2_querysim" extends="MDB2_Driver_Common" instantiatedby="MDB2::connect()">
<resource type="file" name="connection" oncondition="source is external file" scope="class" />
<string name="phptype" default="querysim" />
<string name="dbsyntax" default="querysim" />
<array name="supported" comments="most of these don't actually do anything, they are enabled to simulate the option being available if checked">
<boolean name="sequences" default="true" />
<boolean name="indexes" default="true" />
<boolean name="affected_rows" default="true" />
<boolean name="summary_functions" default="true" />
<boolean name="order_by_text" default="true" />
<boolean name="current_id" default="true" />
<boolean name="limit_querys" default="true" comments="this one is functional" />
<boolean name="LOBs" default="true" />
<boolean name="replace" default="true" />
<boolean name="sub_selects" default="true" />
<boolean name="transactions" default="true" />
<string name="last_query" comments="last value passed in with query()" />
<array name="options" comments="these can be changed at run time">
<string name="columnDelim" default="," />
<string name="dataDelim" default="|" />
<string name="eolDelim" default="chr(13).chr(10)" />
<array name="result" comments="the simulated record set returned by ::query()">
<array comments="columns">
<string comments="column name" />
<string comments="data element" />
* @author Alan Richmond <arichmond@bigfoot.com>
$this->phptype = 'querysim';
$this->dbsyntax = 'querysim';
// Most of these are dummies to simulate availability if checked
$this->supported['summary_functions'] = true;
$this->supported['limit_queries'] = true; // this one is real
$this->options['columnDelim'] = ',';
* Open a file or simulate a successful database connect
* @return mixed MDB2_OK string on success, a MDB2 error object on failure
if ($this->connection != 0 ) {
if (!strcmp($this->connected_database_name, $this->database_name)
&& ($this->opened_persistent == $this->options['persistent']))
if ($this->connected_database_name) {
$this->_close($this->connection);
$connection = 1; // sim connect
// if external, check file...
if ($this->database_name) {
$file = $this->database_name;
'could not open file - check permissions');
// ...and open if persistent
if ($this->options['persistent']) {
$connection = @fopen($file, 'r');
$this->connection = $connection;
$this->connected_database_name = $this->database_name;
$this->opened_persistent = $this->options['persistent'];
* Close a file or simulate a successful database disconnect
* @return bool true on success, false if file closed.
* Always true if simulated.
if ($this->connection != 0 ) {
if (($this->opened_persistent) && (is_resource($this->connection))) {
$ret = @fclose($this->connection);
unset ($GLOBALS['_MDB2_databases'][$this->db_index]);
if (!isset ($ret) || !$ret) {
* Get QuerySim text from appropriate source and return
* @param string The QuerySim text
* @param mixed $types array that contains the types of the columns in
* @param mixed $result_class string which specifies which result class to use
* @param mixed $result_wrap_class string which specifies which class to wrap results in
* @return mixed Simulated result set as a multidimentional
* array if valid QuerySim text was passed in. A MDB2 error
* is returned on failure.
function &query($query, $types = null , $result_class = false , $result_wrap_class = false )
$offset = $this->row_offset;
$limit = $this->row_limit;
$this->row_offset = $this->row_limit = 0;
if ($this->database_name) {
$query = $this->_readFile ();
$this->debug($query, 'query');
if ($result = $this->_buildResult ($query)) {
$result[1 ] = array_slice($result[1 ], $offset-1 , $limit);
$result_class = $this->options['result_buffering']
? $this->options['buffered_result_class'] : $this->options['result_class'];
$class_name = sprintf($result_class, $this->phptype);
$result = & new $class_name($this, $result);
$err = $result->setResultTypes ($types);
if (!$result_wrap_class) {
$result_wrap_class = $this->options['result_wrap_class'];
if ($result_wrap_class) {
$result = & new $result_wrap_class($result);
* @param string filepath/filename
* @return string the contents of a file
if ($this->opened_persistent) {
while (!feof($this->connection)) {
$buffer .= fgets($this->connection, 1024 );
$this->connection = @fopen($this->connected_database_name, 'r');
while (!feof($this->connection)) {
$buffer .= fgets($this->connection, 1024 );
$this->connection = @fclose($this->connection);
* Convert QuerySim text into an array
* @param string Text of simulated query
* @return multi-dimensional array containing the column names and data
function _buildResult ($query)
$eolDelim = $this->options['eolDelim'];
$columnDelim = $this->options['columnDelim'];
$dataDelim = $this->options['dataDelim'];
if ($columnDelim == $eolDelim) {
'columnDelim and eolDelim must be different');
} elseif ($dataDelim == $eolDelim){
'dataDelim and eolDelim must be different');
//tokenize escaped slashes
$query = str_replace('\\\\', '[$double-slash$]', $query);
$lineData = $this->_parseOnDelim ($query, $eolDelim);
//kill the empty last row created by final eol char if it exists
unset ($lineData[count($lineData) - 1 ]);
//populate columnNames array
$thisLine = each($lineData);
$columnNames = $this->_parseOnDelim ($thisLine[1 ], $columnDelim);
'all column names must be defined');
//replace double-slash tokens with single-slash
$columnNames = str_replace('[$double-slash$]', '\\', $columnNames);
$columnCount = count($columnNames);
//loop through data lines
if (count($lineData) > 1 ) {
while ($thisLine = each($lineData)) {
$thisData = $this->_parseOnDelim ($thisLine[1 ], $dataDelim);
$thisDataCount = count($thisData);
if ($thisDataCount != $columnCount) {
$fileLineNo = $rowNum + 2;
" number of data elements ($thisDataCount) in line $fileLineNo not equal to number of defined columns ($columnCount)" );
//loop through data elements in data line
foreach ($thisData as $thisElement) {
//replace double-slash tokens with single-slash
$data[$rowNum][] = str_replace('[$double-slash$]', '\\', $thisElement);
return array ($columnNames, $data);
}//end function _buildResult()
* Split QuerySim string into an array on a delimiter
* @param string $thisLine Text of simulated query
* @param string $delim The delimiter to split on
* @return array containing parsed string
function _parseOnDelim ($thisLine, $delim)
$thisLine = trim($thisLine);
$parsed = preg_split('/(?<!\\\\)' . $delimQuoted. '/', $thisLine);
//replaces escaped delimiters
$parsed = preg_replace('/\\\\' . $delimQuoted. '/', $delim, $parsed);
if ($delim != $this->options['eolDelim']) {
class MDB2_Result_querysim extends MDB2_Result_Common
function MDB2_Result_querysim (&$mdb, &$result)
parent ::MDB2_Result_Common ($mdb, $result);
* fetch value from a result set
* @param int $rownum number of the row where the data can be found
* @param int $colnum field number where the data can be found
* @return mixed string on success, a MDB2 error on failure
function fetch ($rownum = 0 , $colnum = 0 )
if (!isset ($this->result[1 ][$rownum][$colnum])) {
'fetch: resultset has already been freed');
$value = $this->result[1 ][$rownum][$colnum];
if (isset ($this->types[$colnum])) {
$value = $this->mdb->datatype ->convertResult ($value, $this->types[$colnum]);
* Fetch a row and insert the data into an existing array.
* @param int $fetchmode how the array data should be indexed
* @return int data array on success, a MDB2 error on failure
function fetchRow ($fetchmode = MDB2_FETCHMODE_DEFAULT )
'fetchRow: resultset has already been freed');
$target_rownum = $this->rownum + 1;
$fetchmode = $this->mdb->fetchmode;
if (!isset ($this->result[1 ][$target_rownum])) {
$row = $this->result[1 ][$target_rownum];
$column_names = $this->getColumnNames ();
foreach ($column_names as $name => $i) {
$column_names[$name] = $row[$i];
if (isset ($this->types)) {
$row = $this->mdb->datatype ->convertResultRow ($this->types, $row);
$this->mdb->_rtrimArrayValues ($row);
$this->mdb->_convertEmptyArrayValuesToNull ($row);
* Retrieve the names of columns returned by the DBMS in a query result.
* @return mixed an associative array variable
* that will hold the names of columns. The
* indexes of the array are the column names
* mapped to lower case and the values are the
* respective numbers of the columns starting
* from 0. Some DBMS may not return any
* columns when the result set does not
* a MDB2 error on failure
function getColumnNames ()
'getColumnNames: resultset has already been freed');
* Count the number of columns returned by the DBMS in a query result.
* @return mixed integer value with the number of columns, a MDB2 error
'numCols: resultset has already been freed');
$cols = count($this->result[0 ]);
class MDB2_BufferedResult_querysim extends MDB2_Result_querysim
function MDB2_BufferedResult_querysim (&$mdb, &$result)
parent ::MDB2_Result_querysim ($mdb, $result);
* seek to a specific row in a result set
* @param int $rownum number of the row where the data can be found
* @return mixed MDB2_OK on success, a MDB2 error on failure
function seek ($rownum = 0 )
'seek: resultset has already been freed');
$this->rownum = $rownum - 1;
* check if the end of the result set has been reached
* @return mixed true or false on sucess, a MDB2 error on failure
$numrows = $this->numRows ();
return $this->rownum < ($numrows - 1 );
* returns the number of rows in a result object
* @return mixed MDB2 Error Object or the number of rows
'numRows: resultset has already been freed');
$rows = count($this->result[1 ]);
Documentation generated on Mon, 11 Mar 2019 10:15:54 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|