Documenation update and more fat trimming

This commit is contained in:
Timothy Warren 2012-10-30 16:14:57 +00:00
parent 3de38cd953
commit 9078e19961
36 changed files with 1194 additions and 1078 deletions

View File

@ -46,147 +46,74 @@ class Query_Builder {
// ! SQL Clause Strings // ! SQL Clause Strings
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
/** // Compiled 'select' clause
* Compiled 'select' clause
*
* @var string
*/
private $select_string; private $select_string;
/** // Compiled 'from' clause
* Compiled 'from' clause
*
* @var string
*/
private $from_string; private $from_string;
/** // Compiled arguments for insert / update
* Compiled arguments for insert / update
*
* @var string
*/
private $set_string; private $set_string;
/** // Order by clause
* Order by clause
*
* @var string
*/
private $order_string; private $order_string;
/** // Group by clause
* Group by clause
*
* @var string
*/
private $group_string; private $group_string;
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
// ! SQL Clause Arrays // ! SQL Clause Arrays
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
/** // Keys for insert/update statement
* Keys for insert/update statement
*
* @var array
*/
private $set_array_keys; private $set_array_keys;
/** // Key/val pairs for order by clause
* Key/val pairs for order by clause
*
* @var array
*/
private $order_array; private $order_array;
/** // Key/val pairs for group by clause
* Key/val pairs for group by clause
*
* @var array
*/
private $group_array; private $group_array;
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
// ! Other Class vars // ! Other Class vars
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
/** // Values to apply to prepared statements
* Values to apply to prepared statements
*
* @var array
*/
private $values = array(); private $values = array();
/** // Values to apply to where clauses in prepared statements
* Values to apply to where clauses in prepared statements
*
* @var array
*/
private $where_values = array(); private $where_values = array();
/** // Value for limit string
* Value for limit string
*
* @var int
*/
private $limit; private $limit;
/** // Value for offset in limit string
* Value for offset in limit string
*
* @var int
*/
private $offset; private $offset;
/** // Alias to $this->db->sql
* Alias to $this->db->sql
*
* @var DB_PDO
*/
public $sql; public $sql;
/** // Database table prefix
* Database table prefix
*
* @var string
*/
public $table_prefix = ''; public $table_prefix = '';
/** // Query component order mapping
* Query component order mapping // for complex select queries
* for complex select queries //
* // Format:
* Format: // array(
* // 'type' => 'where',
* array( // 'conjunction' => ' AND ',
* 'type' => 'where', // 'string' => 'k=?'
* 'conjunction' => ' AND ', // )
* 'string' => 'k=?'
* )
*
* @var array
*/
private $query_map; private $query_map;
/** // Map for having clause
* Map for having clause
*
* @var array
*/
private $having_map; private $having_map;
/** // Convenience property for connection management
* Convenience property for connection management
*
* @var string
*/
public $conn_name = ""; public $conn_name = "";
/** // List of sql queries executed
* List of sql queries executed
*
* @var array
*/
public $queries; public $queries;
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
@ -274,14 +201,9 @@ class Query_Builder {
try try
{ {
// Create the database connection // Create the database connection
if ( ! empty($params->user)) $this->db = ( ! empty($params->user))
{ ? new $dbtype($dsn, $params->user, $params->pass)
$this->db = new $dbtype($dsn, $params->user, $params->pass); : new $dbtype($dsn);
}
else
{
$this->db = new $dbtype($dsn);
}
} }
catch(Exception $e) catch(Exception $e)
{ {
@ -1336,12 +1258,10 @@ class Query_Builder {
// delete class methods! // delete class methods!
foreach($this as $name => $var) foreach($this as $name => $var)
{ {
$skip = array('db','sql','queries','table_prefix');
// Skip properties that are needed for every query // Skip properties that are needed for every query
if (in_array($name, array( if (in_array($name, $skip))
'db',
'sql',
'queries',
)))
{ {
continue; continue;
} }
@ -1366,8 +1286,9 @@ class Query_Builder {
/** /**
* Executes the compiled query * Executes the compiled query
* *
* @param string type * @param string $type
* @param string table * @param string $table
* @param bool $simple
* @return mixed * @return mixed
*/ */
private function _run($type, $table, $simple=FALSE) private function _run($type, $table, $simple=FALSE)
@ -1375,14 +1296,9 @@ class Query_Builder {
$sql = $this->_compile($type, $table); $sql = $this->_compile($type, $table);
$vals = array_merge($this->values, (array) $this->where_values); $vals = array_merge($this->values, (array) $this->where_values);
if ($simple) $res = ($simple)
{ ? $this->query($sql)
$res = $this->query($sql); : $this->prepare_execute($sql, $vals);
}
else
{
$res = $this->prepare_execute($sql, $vals);
}
$this->reset_query(); $this->reset_query();
@ -1391,23 +1307,6 @@ class Query_Builder {
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
/**
* Auto-prefix table names
*
* @param string $table
* @return string
*/
private function prefix($table)
{
// If there isn't a prefix, just return
if (empty($this->table_prefix))
{
return $table;
}
}
// --------------------------------------------------------------------------
/** /**
* Calls a function further down the inheritence chain * Calls a function further down the inheritence chain
* *
@ -1452,42 +1351,6 @@ class Query_Builder {
// Replace the star with the selected fields // Replace the star with the selected fields
$sql = str_replace('*', $this->select_string, $sql); $sql = str_replace('*', $this->select_string, $sql);
} }
// Set the where string
if ( ! empty($this->query_map))
{
foreach($this->query_map as $q)
{
$sql .= $q['conjunction'] . $q['string'];
}
}
// Set the group_by string
if ( ! empty($this->group_string))
{
$sql .= $this->group_string;
}
// Set the having string
if ( ! empty($this->having_map))
{
foreach($this->having_map as $h)
{
$sql .= $h['conjunction'] . $h['string'];
}
}
// Set the order_by string
if ( ! empty($this->order_string))
{
$sql .= $this->order_string;
}
// Set the limit via the class variables
if (isset($this->limit) && is_numeric($this->limit))
{
$sql = $this->sql->limit($sql, $this->limit, $this->offset);
}
break; break;
case "insert": case "insert":
@ -1500,32 +1363,49 @@ class Query_Builder {
case "update": case "update":
$sql = "UPDATE {$table} SET {$this->set_string}"; $sql = "UPDATE {$table} SET {$this->set_string}";
// Set the where string
if ( ! empty($this->query_map))
{
foreach($this->query_map as $q)
{
$sql .= $q['conjunction'] . $q['string'];
}
}
break; break;
case "delete": case "delete":
$sql = "DELETE FROM {$table}"; $sql = "DELETE FROM {$table}";
// Set the where string
if ( ! empty($this->query_map))
{
foreach($this->query_map as $q)
{
$sql .= $q['conjunction'] . $q['string'];
}
}
break; break;
} }
// Set the where string
if ( ! empty($this->query_map))
{
foreach($this->query_map as $q)
{
$sql .= $q['conjunction'] . $q['string'];
}
}
// Set the group_by string
if ( ! empty($this->group_string))
{
$sql .= $this->group_string;
}
// Set the order_by string
if ( ! empty($this->order_string))
{
$sql .= $this->order_string;
}
// Set the limit via the class variables
if (isset($this->limit) && is_numeric($this->limit))
{
$sql = $this->sql->limit($sql, $this->limit, $this->offset);
}
// Set the having string
if ( ! empty($this->having_map))
{
foreach($this->having_map as $h)
{
$sql .= $h['conjunction'] . $h['string'];
}
}
// Add the query to the list of executed queries // Add the query to the list of executed queries
$this->queries[] = $sql; $this->queries[] = $sql;

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -219,7 +219,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -219,7 +219,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -121,6 +121,7 @@ the connection/database</span><pre>get_system_tables()</pre></a></li>
<li class="method protected "><a href="#_quote" title="_quote :: Helper method for quote_ident"><span class="description">Helper method for quote_ident</span><pre>_quote()</pre></a></li> <li class="method protected "><a href="#_quote" title="_quote :: Helper method for quote_ident"><span class="description">Helper method for quote_ident</span><pre>_quote()</pre></a></li>
<li class="nav-header"> <li class="nav-header">
<i class="icon-custom icon-property"></i> Properties</li> <i class="icon-custom icon-property"></i> Properties</li>
<li class="property public "><a href="#%24last_query" title="$last_query :: Last query executed"><span class="description">Last query executed</span><pre>$last_query</pre></a></li>
<li class="property public "><a href="#%24sql" title="$sql :: Reference to sql sub class"><span class="description">Reference to sql sub class</span><pre>$sql</pre></a></li> <li class="property public "><a href="#%24sql" title="$sql :: Reference to sql sub class"><span class="description">Reference to sql sub class</span><pre>$sql</pre></a></li>
<li class="property public "><a href="#%24util" title="$util :: Reference to util sub class"><span class="description">Reference to util sub class</span><pre>$util</pre></a></li> <li class="property public "><a href="#%24util" title="$util :: Reference to util sub class"><span class="description">Reference to util sub class</span><pre>$util</pre></a></li>
<li class="nav-header protected">» Protected</li> <li class="nav-header protected">» Protected</li>
@ -510,6 +511,10 @@ the connection/database</h2>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"> <div class="row collapse"><div class="span8">
<p class="long_description"></p> <p class="long_description"></p>
<table class="table table-bordered"><tr>
<th>see</th>
<td>\http://us3.php.net/manual/en/pdostatement.rowcount.php#87110</td>
</tr></table>
<h3>Returns</h3> <h3>Returns</h3>
<div class="subelement response"><code>int</code></div> <div class="subelement response"><code>int</code></div>
</div></div> </div></div>
@ -676,6 +681,12 @@ the connection/database</h2>
</div> </div>
<h3> <h3>
<i class="icon-custom icon-property"></i> Properties</h3> <i class="icon-custom icon-property"></i> Properties</h3>
<a name="%24last_query" id="$last_query"> </a><div class="element clickable property public $last_query" data-toggle="collapse" data-target=".$last_query .collapse">
<h2>Last query executed</h2>
<pre>$last_query : string</pre>
<div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div>
<a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse"> <a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse">
<h2>Reference to sql sub class</h2> <h2>Reference to sql sub class</h2>
<pre>$sql : Object</pre> <pre>$sql : Object</pre>
@ -707,7 +718,7 @@ the connection/database</h2>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -299,7 +299,7 @@ specified table</h2>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -210,7 +210,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -113,6 +113,7 @@ the connection/database</span><pre>get_system_tables()</pre></a></li>
<li class="method protected inherited"><a href="#_quote" title="_quote :: Helper method for quote_ident"><span class="description">Helper method for quote_ident</span><pre>_quote()</pre></a></li> <li class="method protected inherited"><a href="#_quote" title="_quote :: Helper method for quote_ident"><span class="description">Helper method for quote_ident</span><pre>_quote()</pre></a></li>
<li class="nav-header"> <li class="nav-header">
<i class="icon-custom icon-property"></i> Properties</li> <i class="icon-custom icon-property"></i> Properties</li>
<li class="property public inherited"><a href="#%24last_query" title="$last_query :: Last query executed"><span class="description">Last query executed</span><pre>$last_query</pre></a></li>
<li class="property public inherited"><a href="#%24sql" title="$sql :: Reference to sql sub class"><span class="description">Reference to sql sub class</span><pre>$sql</pre></a></li> <li class="property public inherited"><a href="#%24sql" title="$sql :: Reference to sql sub class"><span class="description">Reference to sql sub class</span><pre>$sql</pre></a></li>
<li class="property public inherited"><a href="#%24util" title="$util :: Reference to util sub class"><span class="description">Reference to util sub class</span><pre>$util</pre></a></li> <li class="property public inherited"><a href="#%24util" title="$util :: Reference to util sub class"><span class="description">Reference to util sub class</span><pre>$util</pre></a></li>
<li class="nav-header protected">» Protected</li> <li class="nav-header protected">» Protected</li>
@ -597,10 +598,16 @@ the connection/database</h2>
<div class="labels"><span class="label">Inherited</span></div> <div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="span8"> <div class="row collapse"><div class="span8">
<p class="long_description"></p> <p class="long_description"></p>
<table class="table table-bordered"><tr> <table class="table table-bordered">
<tr>
<th>see</th>
<td>\http://us3.php.net/manual/en/pdostatement.rowcount.php#87110</td>
</tr>
<tr>
<th>inherited_from</th> <th>inherited_from</th>
<td>\DB_PDO::num_rows()</td> <td>\DB_PDO::num_rows()</td>
</tr></table> </tr>
</table>
<h3>Returns</h3> <h3>Returns</h3>
<div class="subelement response"><code>int</code></div> <div class="subelement response"><code>int</code></div>
</div></div> </div></div>
@ -801,6 +808,18 @@ the connection/database</h2>
</div> </div>
<h3> <h3>
<i class="icon-custom icon-property"></i> Properties</h3> <i class="icon-custom icon-property"></i> Properties</h3>
<a name="%24last_query" id="$last_query"> </a><div class="element clickable property public $last_query" data-toggle="collapse" data-target=".$last_query .collapse">
<h2>Last query executed</h2>
<pre>$last_query : string</pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="span8">
<p class="long_description"></p>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\DB_PDO::$$last_query</td>
</tr></table>
</div></div>
</div>
<a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse"> <a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse">
<h2>Reference to sql sub class</h2> <h2>Reference to sql sub class</h2>
<pre>$sql : Object</pre> <pre>$sql : Object</pre>
@ -869,7 +888,7 @@ the last query executed</h2>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -505,7 +505,7 @@ the query</h2>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -309,7 +309,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -213,7 +213,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -121,6 +121,7 @@ the connection/database</span><pre>get_system_tables()</pre></a></li>
<li class="method protected inherited"><a href="#_quote" title="_quote :: Helper method for quote_ident"><span class="description">Helper method for quote_ident</span><pre>_quote()</pre></a></li> <li class="method protected inherited"><a href="#_quote" title="_quote :: Helper method for quote_ident"><span class="description">Helper method for quote_ident</span><pre>_quote()</pre></a></li>
<li class="nav-header"> <li class="nav-header">
<i class="icon-custom icon-property"></i> Properties</li> <i class="icon-custom icon-property"></i> Properties</li>
<li class="property public inherited"><a href="#%24last_query" title="$last_query :: Last query executed"><span class="description">Last query executed</span><pre>$last_query</pre></a></li>
<li class="property public inherited"><a href="#%24sql" title="$sql :: Reference to sql sub class"><span class="description">Reference to sql sub class</span><pre>$sql</pre></a></li> <li class="property public inherited"><a href="#%24sql" title="$sql :: Reference to sql sub class"><span class="description">Reference to sql sub class</span><pre>$sql</pre></a></li>
<li class="property public inherited"><a href="#%24util" title="$util :: Reference to util sub class"><span class="description">Reference to util sub class</span><pre>$util</pre></a></li> <li class="property public inherited"><a href="#%24util" title="$util :: Reference to util sub class"><span class="description">Reference to util sub class</span><pre>$util</pre></a></li>
<li class="nav-header protected">» Protected</li> <li class="nav-header protected">» Protected</li>
@ -640,10 +641,16 @@ the connection/database</h2>
<div class="labels"><span class="label">Inherited</span></div> <div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="span8"> <div class="row collapse"><div class="span8">
<p class="long_description"></p> <p class="long_description"></p>
<table class="table table-bordered"><tr> <table class="table table-bordered">
<tr>
<th>see</th>
<td>\http://us3.php.net/manual/en/pdostatement.rowcount.php#87110</td>
</tr>
<tr>
<th>inherited_from</th> <th>inherited_from</th>
<td>\DB_PDO::num_rows()</td> <td>\DB_PDO::num_rows()</td>
</tr></table> </tr>
</table>
<h3>Returns</h3> <h3>Returns</h3>
<div class="subelement response"><code>int</code></div> <div class="subelement response"><code>int</code></div>
</div></div> </div></div>
@ -856,6 +863,18 @@ the connection/database</h2>
</div> </div>
<h3> <h3>
<i class="icon-custom icon-property"></i> Properties</h3> <i class="icon-custom icon-property"></i> Properties</h3>
<a name="%24last_query" id="$last_query"> </a><div class="element clickable property public $last_query" data-toggle="collapse" data-target=".$last_query .collapse">
<h2>Last query executed</h2>
<pre>$last_query : string</pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="span8">
<p class="long_description"></p>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\DB_PDO::$$last_query</td>
</tr></table>
</div></div>
</div>
<a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse"> <a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse">
<h2>Reference to sql sub class</h2> <h2>Reference to sql sub class</h2>
<pre>$sql : Object</pre> <pre>$sql : Object</pre>
@ -905,7 +924,7 @@ the connection/database</h2>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -314,7 +314,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -209,7 +209,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -121,6 +121,7 @@ the connection/database</span><pre>get_system_tables()</pre></a></li>
<li class="method protected inherited"><a href="#_quote" title="_quote :: Helper method for quote_ident"><span class="description">Helper method for quote_ident</span><pre>_quote()</pre></a></li> <li class="method protected inherited"><a href="#_quote" title="_quote :: Helper method for quote_ident"><span class="description">Helper method for quote_ident</span><pre>_quote()</pre></a></li>
<li class="nav-header"> <li class="nav-header">
<i class="icon-custom icon-property"></i> Properties</li> <i class="icon-custom icon-property"></i> Properties</li>
<li class="property public inherited"><a href="#%24last_query" title="$last_query :: Last query executed"><span class="description">Last query executed</span><pre>$last_query</pre></a></li>
<li class="property public inherited"><a href="#%24sql" title="$sql :: Reference to sql sub class"><span class="description">Reference to sql sub class</span><pre>$sql</pre></a></li> <li class="property public inherited"><a href="#%24sql" title="$sql :: Reference to sql sub class"><span class="description">Reference to sql sub class</span><pre>$sql</pre></a></li>
<li class="property public inherited"><a href="#%24util" title="$util :: Reference to util sub class"><span class="description">Reference to util sub class</span><pre>$util</pre></a></li> <li class="property public inherited"><a href="#%24util" title="$util :: Reference to util sub class"><span class="description">Reference to util sub class</span><pre>$util</pre></a></li>
<li class="nav-header protected">» Protected</li> <li class="nav-header protected">» Protected</li>
@ -640,10 +641,16 @@ the connection/database</h2>
<div class="labels"><span class="label">Inherited</span></div> <div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="span8"> <div class="row collapse"><div class="span8">
<p class="long_description"></p> <p class="long_description"></p>
<table class="table table-bordered"><tr> <table class="table table-bordered">
<tr>
<th>see</th>
<td>\http://us3.php.net/manual/en/pdostatement.rowcount.php#87110</td>
</tr>
<tr>
<th>inherited_from</th> <th>inherited_from</th>
<td>\DB_PDO::num_rows()</td> <td>\DB_PDO::num_rows()</td>
</tr></table> </tr>
</table>
<h3>Returns</h3> <h3>Returns</h3>
<div class="subelement response"><code>int</code></div> <div class="subelement response"><code>int</code></div>
</div></div> </div></div>
@ -858,6 +865,18 @@ the connection/database</h2>
</div> </div>
<h3> <h3>
<i class="icon-custom icon-property"></i> Properties</h3> <i class="icon-custom icon-property"></i> Properties</h3>
<a name="%24last_query" id="$last_query"> </a><div class="element clickable property public $last_query" data-toggle="collapse" data-target=".$last_query .collapse">
<h2>Last query executed</h2>
<pre>$last_query : string</pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="span8">
<p class="long_description"></p>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\DB_PDO::$$last_query</td>
</tr></table>
</div></div>
</div>
<a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse"> <a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse">
<h2>Reference to sql sub class</h2> <h2>Reference to sql sub class</h2>
<pre>$sql : Object</pre> <pre>$sql : Object</pre>
@ -907,7 +926,7 @@ the connection/database</h2>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -309,7 +309,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -204,7 +204,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -121,6 +121,7 @@ the connection/database</span><pre>get_system_tables()</pre></a></li>
<li class="method protected inherited"><a href="#_quote" title="_quote :: Helper method for quote_ident"><span class="description">Helper method for quote_ident</span><pre>_quote()</pre></a></li> <li class="method protected inherited"><a href="#_quote" title="_quote :: Helper method for quote_ident"><span class="description">Helper method for quote_ident</span><pre>_quote()</pre></a></li>
<li class="nav-header"> <li class="nav-header">
<i class="icon-custom icon-property"></i> Properties</li> <i class="icon-custom icon-property"></i> Properties</li>
<li class="property public inherited"><a href="#%24last_query" title="$last_query :: Last query executed"><span class="description">Last query executed</span><pre>$last_query</pre></a></li>
<li class="property public inherited"><a href="#%24sql" title="$sql :: Reference to sql sub class"><span class="description">Reference to sql sub class</span><pre>$sql</pre></a></li> <li class="property public inherited"><a href="#%24sql" title="$sql :: Reference to sql sub class"><span class="description">Reference to sql sub class</span><pre>$sql</pre></a></li>
<li class="property public inherited"><a href="#%24util" title="$util :: Reference to util sub class"><span class="description">Reference to util sub class</span><pre>$util</pre></a></li> <li class="property public inherited"><a href="#%24util" title="$util :: Reference to util sub class"><span class="description">Reference to util sub class</span><pre>$util</pre></a></li>
<li class="nav-header protected">» Protected</li> <li class="nav-header protected">» Protected</li>
@ -636,10 +637,16 @@ the connection/database</h2>
<div class="labels"><span class="label">Inherited</span></div> <div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="span8"> <div class="row collapse"><div class="span8">
<p class="long_description"></p> <p class="long_description"></p>
<table class="table table-bordered"><tr> <table class="table table-bordered">
<tr>
<th>see</th>
<td>\http://us3.php.net/manual/en/pdostatement.rowcount.php#87110</td>
</tr>
<tr>
<th>inherited_from</th> <th>inherited_from</th>
<td>\DB_PDO::num_rows()</td> <td>\DB_PDO::num_rows()</td>
</tr></table> </tr>
</table>
<h3>Returns</h3> <h3>Returns</h3>
<div class="subelement response"><code>int</code></div> <div class="subelement response"><code>int</code></div>
</div></div> </div></div>
@ -852,6 +859,18 @@ the connection/database</h2>
</div> </div>
<h3> <h3>
<i class="icon-custom icon-property"></i> Properties</h3> <i class="icon-custom icon-property"></i> Properties</h3>
<a name="%24last_query" id="$last_query"> </a><div class="element clickable property public $last_query" data-toggle="collapse" data-target=".$last_query .collapse">
<h2>Last query executed</h2>
<pre>$last_query : string</pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="span8">
<p class="long_description"></p>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\DB_PDO::$$last_query</td>
</tr></table>
</div></div>
</div>
<a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse"> <a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse">
<h2>Reference to sql sub class</h2> <h2>Reference to sql sub class</h2>
<pre>$sql : Object</pre> <pre>$sql : Object</pre>
@ -907,7 +926,7 @@ the connection/database</h2>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -309,7 +309,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -209,7 +209,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -97,7 +97,7 @@ prefixed with 'OR NOT'</span><pre>or_not_group_start()</pre></a></li>
<li class="method public "><a href="#or_where_in" title='or_where_in :: Where in statement prefixed with "or"'><span class="description">Where in statement prefixed with "or"</span><pre>or_where_in()</pre></a></li> <li class="method public "><a href="#or_where_in" title='or_where_in :: Where in statement prefixed with "or"'><span class="description">Where in statement prefixed with "or"</span><pre>or_where_in()</pre></a></li>
<li class="method public "><a href="#or_where_not_in" title="or_where_not_in :: OR WHERE NOT IN (FOO) clause"><span class="description">OR WHERE NOT IN (FOO) clause</span><pre>or_where_not_in()</pre></a></li> <li class="method public "><a href="#or_where_not_in" title="or_where_not_in :: OR WHERE NOT IN (FOO) clause"><span class="description">OR WHERE NOT IN (FOO) clause</span><pre>or_where_not_in()</pre></a></li>
<li class="method public "><a href="#order_by" title="order_by :: Order the results by the selected field(s)"><span class="description">Order the results by the selected field(s)</span><pre>order_by()</pre></a></li> <li class="method public "><a href="#order_by" title="order_by :: Order the results by the selected field(s)"><span class="description">Order the results by the selected field(s)</span><pre>order_by()</pre></a></li>
<li class="method public "><a href="#reset_query" title="reset_query :: Resets the query builder for the next query"><span class="description">Resets the query builder for the next query</span><pre>reset_query()</pre></a></li> <li class="method public "><a href="#reset_query" title="reset_query :: Clear out the class variables, so the next query can be run"><span class="description">Clear out the class variables, so the next query can be run</span><pre>reset_query()</pre></a></li>
<li class="method public "><a href="#select" title="select :: Specifies rows to select in a query"><span class="description">Specifies rows to select in a query</span><pre>select()</pre></a></li> <li class="method public "><a href="#select" title="select :: Specifies rows to select in a query"><span class="description">Specifies rows to select in a query</span><pre>select()</pre></a></li>
<li class="method public "><a href="#select_avg" title="select_avg :: Selects the average value of a field from a query"><span class="description">Selects the average value of a field from a query</span><pre>select_avg()</pre></a></li> <li class="method public "><a href="#select_avg" title="select_avg :: Selects the average value of a field from a query"><span class="description">Selects the average value of a field from a query</span><pre>select_avg()</pre></a></li>
<li class="method public "><a href="#select_max" title="select_max :: Selects the maximum value of a field from a query"><span class="description">Selects the maximum value of a field from a query</span><pre>select_max()</pre></a></li> <li class="method public "><a href="#select_max" title="select_max :: Selects the maximum value of a field from a query"><span class="description">Selects the maximum value of a field from a query</span><pre>select_max()</pre></a></li>
@ -112,36 +112,38 @@ Note: this function works with key / value, or a
passed array with key / value pairs</span><pre>where()</pre></a></li> passed array with key / value pairs</span><pre>where()</pre></a></li>
<li class="method public "><a href="#where_in" title="where_in :: Where clause with 'IN' statement"><span class="description">Where clause with 'IN' statement</span><pre>where_in()</pre></a></li> <li class="method public "><a href="#where_in" title="where_in :: Where clause with 'IN' statement"><span class="description">Where clause with 'IN' statement</span><pre>where_in()</pre></a></li>
<li class="method public "><a href="#where_not_in" title="where_not_in :: WHERE NOT IN (FOO) clause"><span class="description">WHERE NOT IN (FOO) clause</span><pre>where_not_in()</pre></a></li> <li class="method public "><a href="#where_not_in" title="where_not_in :: WHERE NOT IN (FOO) clause"><span class="description">WHERE NOT IN (FOO) clause</span><pre>where_not_in()</pre></a></li>
<li class="nav-header protected">» Protected</li>
<li class="method protected "><a href="#_get_compile" title="_get_compile :: Helper function for returning sql strings"><span class="description">Helper function for returning sql strings</span><pre>_get_compile()</pre></a></li>
<li class="nav-header private">» Private</li> <li class="nav-header private">» Private</li>
<li class="method private "><a href="#_compile" title="_compile :: String together the sql statements for sending to the db"><span class="description">String together the sql statements for sending to the db</span><pre>_compile()</pre></a></li> <li class="method private "><a href="#_compile" title="_compile :: String together the sql statements for sending to the db"><span class="description">String together the sql statements for sending to the db</span><pre>_compile()</pre></a></li>
<li class="method private "><a href="#_having" title="_having :: Simplify building having clauses"><span class="description">Simplify building having clauses</span><pre>_having()</pre></a></li> <li class="method private "><a href="#_having" title="_having :: Simplify building having clauses"><span class="description">Simplify building having clauses</span><pre>_having()</pre></a></li>
<li class="method private "><a href="#_like" title="_like :: Simplify 'like' methods"><span class="description">Simplify 'like' methods</span><pre>_like()</pre></a></li> <li class="method private "><a href="#_like" title="_like :: Simplify 'like' methods"><span class="description">Simplify 'like' methods</span><pre>_like()</pre></a></li>
<li class="method private "><a href="#_reset" title="_reset :: Clear out the class variables, so the next query can be run"><span class="description">Clear out the class variables, so the next query can be run</span><pre>_reset()</pre></a></li> <li class="method private "><a href="#_run" title="_run :: Executes the compiled query"><span class="description">Executes the compiled query</span><pre>_run()</pre></a></li>
<li class="method private "><a href="#_select" title="_select :: Method to simplify select_ methods"><span class="description">Method to simplify select_ methods</span><pre>_select()</pre></a></li> <li class="method private "><a href="#_select" title="_select :: Method to simplify select_ methods"><span class="description">Method to simplify select_ methods</span><pre>_select()</pre></a></li>
<li class="method private "><a href="#_where" title="_where :: Do all the repeditive stuff for where/having type methods"><span class="description">Do all the repeditive stuff for where/having type methods</span><pre>_where()</pre></a></li> <li class="method private "><a href="#_where" title="_where :: Do all the repeditive stuff for where/having type methods"><span class="description">Do all the repeditive stuff for where/having type methods</span><pre>_where()</pre></a></li>
<li class="method private "><a href="#_where_in" title="_where_in :: Simplify where_in methods"><span class="description">Simplify where_in methods</span><pre>_where_in()</pre></a></li> <li class="method private "><a href="#_where_in" title="_where_in :: Simplify where_in methods"><span class="description">Simplify where_in methods</span><pre>_where_in()</pre></a></li>
<li class="method private "><a href="#_where_string" title="_where_string :: Simplify generating where string"><span class="description">Simplify generating where string</span><pre>_where_string()</pre></a></li> <li class="method private "><a href="#_where_string" title="_where_string :: Simplify generating where string"><span class="description">Simplify generating where string</span><pre>_where_string()</pre></a></li>
<li class="nav-header"> <li class="nav-header">
<i class="icon-custom icon-property"></i> Properties</li> <i class="icon-custom icon-property"></i> Properties</li>
<li class="property public "><a href="#%24conn_name" title="$conn_name :: Convenience property for connection management"><span class="description">Convenience property for connection management</span><pre>$conn_name</pre></a></li> <li class="property public "><a href="#%24conn_name" title="$conn_name :: "><span class="description">$conn_name</span><pre>$conn_name</pre></a></li>
<li class="property public "><a href="#%24queries" title="$queries :: List of sql queries executed"><span class="description">List of sql queries executed</span><pre>$queries</pre></a></li> <li class="property public "><a href="#%24queries" title="$queries :: "><span class="description">$queries</span><pre>$queries</pre></a></li>
<li class="property public "><a href="#%24sql" title="$sql :: Alias to $this-&gt;db-&gt;sql"><span class="description">Alias to $this-&gt;db-&gt;sql</span><pre>$sql</pre></a></li> <li class="property public "><a href="#%24sql" title="$sql :: "><span class="description">$sql</span><pre>$sql</pre></a></li>
<li class="property public "><a href="#%24table_prefix" title="$table_prefix :: "><span class="description">$table_prefix</span><pre>$table_prefix</pre></a></li>
<li class="nav-header private">» Private</li> <li class="nav-header private">» Private</li>
<li class="property private "><a href="#%24from_string" title="$from_string :: Compiled 'from' clause"><span class="description">Compiled 'from' clause</span><pre>$from_string</pre></a></li> <li class="property private "><a href="#%24from_string" title="$from_string :: "><span class="description">$from_string</span><pre>$from_string</pre></a></li>
<li class="property private "><a href="#%24group_array" title="$group_array :: Key/val pairs for group by clause"><span class="description">Key/val pairs for group by clause</span><pre>$group_array</pre></a></li> <li class="property private "><a href="#%24group_array" title="$group_array :: "><span class="description">$group_array</span><pre>$group_array</pre></a></li>
<li class="property private "><a href="#%24group_string" title="$group_string :: Group by clause"><span class="description">Group by clause</span><pre>$group_string</pre></a></li> <li class="property private "><a href="#%24group_string" title="$group_string :: "><span class="description">$group_string</span><pre>$group_string</pre></a></li>
<li class="property private "><a href="#%24having_map" title="$having_map :: Map for having clause"><span class="description">Map for having clause</span><pre>$having_map</pre></a></li> <li class="property private "><a href="#%24having_map" title="$having_map :: "><span class="description">$having_map</span><pre>$having_map</pre></a></li>
<li class="property private "><a href="#%24limit" title="$limit :: Value for limit string"><span class="description">Value for limit string</span><pre>$limit</pre></a></li> <li class="property private "><a href="#%24limit" title="$limit :: "><span class="description">$limit</span><pre>$limit</pre></a></li>
<li class="property private "><a href="#%24offset" title="$offset :: Value for offset in limit string"><span class="description">Value for offset in limit string</span><pre>$offset</pre></a></li> <li class="property private "><a href="#%24offset" title="$offset :: "><span class="description">$offset</span><pre>$offset</pre></a></li>
<li class="property private "><a href="#%24order_array" title="$order_array :: Key/val pairs for order by clause"><span class="description">Key/val pairs for order by clause</span><pre>$order_array</pre></a></li> <li class="property private "><a href="#%24order_array" title="$order_array :: "><span class="description">$order_array</span><pre>$order_array</pre></a></li>
<li class="property private "><a href="#%24order_string" title="$order_string :: Order by clause"><span class="description">Order by clause</span><pre>$order_string</pre></a></li> <li class="property private "><a href="#%24order_string" title="$order_string :: "><span class="description">$order_string</span><pre>$order_string</pre></a></li>
<li class="property private "><a href="#%24query_map" title="$query_map :: Query component order mapping <li class="property private "><a href="#%24query_map" title="$query_map :: "><span class="description">$query_map</span><pre>$query_map</pre></a></li>
for complex select queries"><span class="description">Query component order mapping <li class="property private "><a href="#%24select_string" title="$select_string :: "><span class="description">$select_string</span><pre>$select_string</pre></a></li>
for complex select queries</span><pre>$query_map</pre></a></li> <li class="property private "><a href="#%24set_array_keys" title="$set_array_keys :: "><span class="description">$set_array_keys</span><pre>$set_array_keys</pre></a></li>
<li class="property private "><a href="#%24select_string" title="$select_string :: Compiled 'select' clause"><span class="description">Compiled 'select' clause</span><pre>$select_string</pre></a></li> <li class="property private "><a href="#%24set_string" title="$set_string :: "><span class="description">$set_string</span><pre>$set_string</pre></a></li>
<li class="property private "><a href="#%24set_array_keys" title="$set_array_keys :: Keys for insert/update statement"><span class="description">Keys for insert/update statement</span><pre>$set_array_keys</pre></a></li> <li class="property private "><a href="#%24values" title="$values :: "><span class="description">$values</span><pre>$values</pre></a></li>
<li class="property private "><a href="#%24set_string" title="$set_string :: Compiled arguments for insert / update"><span class="description">Compiled arguments for insert / update</span><pre>$set_string</pre></a></li> <li class="property private "><a href="#%24where_values" title="$where_values :: "><span class="description">$where_values</span><pre>$where_values</pre></a></li>
<li class="property private "><a href="#%24values" title="$values :: Values to apply to prepared statements"><span class="description">Values to apply to prepared statements</span><pre>$values</pre></a></li>
</ul> </ul>
</div> </div>
<div class="span8"> <div class="span8">
@ -795,8 +797,8 @@ prefixed with 'OR NOT'</h2>
</div></div> </div></div>
</div> </div>
<a name="reset_query" id="reset_query"></a><div class="element clickable method public reset_query" data-toggle="collapse" data-target=".reset_query .collapse"> <a name="reset_query" id="reset_query"></a><div class="element clickable method public reset_query" data-toggle="collapse" data-target=".reset_query .collapse">
<h2>Resets the query builder for the next query</h2> <h2>Clear out the class variables, so the next query can be run</h2>
<pre>reset_query() </pre> <pre>reset_query() : void</pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
@ -1024,6 +1026,30 @@ passed array with key / value pairs</h2>
<div class="subelement response"><code><a href="../classes/Query_Builder.html">\Query_Builder</a></code></div> <div class="subelement response"><code><a href="../classes/Query_Builder.html">\Query_Builder</a></code></div>
</div></div> </div></div>
</div> </div>
<a name="_get_compile" id="_get_compile"></a><div class="element clickable method protected _get_compile" data-toggle="collapse" data-target="._get_compile .collapse">
<h2>Helper function for returning sql strings</h2>
<pre>_get_compile(string $type, string $table, $reset) </pre>
<div class="labels"></div>
<div class="row collapse"><div class="span8">
<p class="long_description"></p>
<table class="table table-bordered"><tr>
<th>resturn</th>
<td>string</td>
</tr></table>
<h3>Parameters</h3>
<div class="subelement argument">
<h4>$type</h4>
<code>string</code>
</div>
<div class="subelement argument">
<h4>$table</h4>
<code>string</code>
</div>
<div class="subelement argument">
<h4>$reset</h4>
<code></code><p>bool</p></div>
</div></div>
</div>
<a name="_compile" id="_compile"></a><div class="element clickable method private _compile" data-toggle="collapse" data-target="._compile .collapse"> <a name="_compile" id="_compile"></a><div class="element clickable method private _compile" data-toggle="collapse" data-target="._compile .collapse">
<h2>String together the sql statements for sending to the db</h2> <h2>String together the sql statements for sending to the db</h2>
<pre>_compile(string $type, string $table) : \$string</pre> <pre>_compile(string $type, string $table) : \$string</pre>
@ -1105,11 +1131,28 @@ passed array with key / value pairs</h2>
<div class="subelement response"><code><a href="../classes/Query_Builder.html">\Query_Builder</a></code></div> <div class="subelement response"><code><a href="../classes/Query_Builder.html">\Query_Builder</a></code></div>
</div></div> </div></div>
</div> </div>
<a name="_reset" id="_reset"></a><div class="element clickable method private _reset" data-toggle="collapse" data-target="._reset .collapse"> <a name="_run" id="_run"></a><div class="element clickable method private _run" data-toggle="collapse" data-target="._run .collapse">
<h2>Clear out the class variables, so the next query can be run</h2> <h2>Executes the compiled query</h2>
<pre>_reset() : void</pre> <pre>_run(string $type, string $table, bool $simple) : mixed</pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8">
<p class="long_description"></p>
<h3>Parameters</h3>
<div class="subelement argument">
<h4>$type</h4>
<code>string</code>
</div>
<div class="subelement argument">
<h4>$table</h4>
<code>string</code>
</div>
<div class="subelement argument">
<h4>$simple</h4>
<code>bool</code>
</div>
<h3>Returns</h3>
<div class="subelement response"><code>mixed</code></div>
</div></div>
</div> </div>
<a name="_select" id="_select"></a><div class="element clickable method private _select" data-toggle="collapse" data-target="._select .collapse"> <a name="_select" id="_select"></a><div class="element clickable method private _select" data-toggle="collapse" data-target="._select .collapse">
<h2>Method to simplify select_ methods</h2> <h2>Method to simplify select_ methods</h2>
@ -1208,105 +1251,110 @@ passed array with key / value pairs</h2>
<h3> <h3>
<i class="icon-custom icon-property"></i> Properties</h3> <i class="icon-custom icon-property"></i> Properties</h3>
<a name="%24conn_name" id="$conn_name"> </a><div class="element clickable property public $conn_name" data-toggle="collapse" data-target=".$conn_name .collapse"> <a name="%24conn_name" id="$conn_name"> </a><div class="element clickable property public $conn_name" data-toggle="collapse" data-target=".$conn_name .collapse">
<h2>Convenience property for connection management</h2> <h2>$conn_name</h2>
<pre>$conn_name : string</pre> <pre>$conn_name </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24queries" id="$queries"> </a><div class="element clickable property public $queries" data-toggle="collapse" data-target=".$queries .collapse"> <a name="%24queries" id="$queries"> </a><div class="element clickable property public $queries" data-toggle="collapse" data-target=".$queries .collapse">
<h2>List of sql queries executed</h2> <h2>$queries</h2>
<pre>$queries : array</pre> <pre>$queries </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse"> <a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse">
<h2>Alias to $this-&gt;db-&gt;sql</h2> <h2>$sql</h2>
<pre>$sql : <a href="../classes/DB_PDO.html">\DB_PDO</a></pre> <pre>$sql </pre>
<div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div>
<a name="%24table_prefix" id="$table_prefix"> </a><div class="element clickable property public $table_prefix" data-toggle="collapse" data-target=".$table_prefix .collapse">
<h2>$table_prefix</h2>
<pre>$table_prefix </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24from_string" id="$from_string"> </a><div class="element clickable property private $from_string" data-toggle="collapse" data-target=".$from_string .collapse"> <a name="%24from_string" id="$from_string"> </a><div class="element clickable property private $from_string" data-toggle="collapse" data-target=".$from_string .collapse">
<h2>Compiled 'from' clause</h2> <h2>$from_string</h2>
<pre>$from_string : string</pre> <pre>$from_string </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24group_array" id="$group_array"> </a><div class="element clickable property private $group_array" data-toggle="collapse" data-target=".$group_array .collapse"> <a name="%24group_array" id="$group_array"> </a><div class="element clickable property private $group_array" data-toggle="collapse" data-target=".$group_array .collapse">
<h2>Key/val pairs for group by clause</h2> <h2>$group_array</h2>
<pre>$group_array : array</pre> <pre>$group_array </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24group_string" id="$group_string"> </a><div class="element clickable property private $group_string" data-toggle="collapse" data-target=".$group_string .collapse"> <a name="%24group_string" id="$group_string"> </a><div class="element clickable property private $group_string" data-toggle="collapse" data-target=".$group_string .collapse">
<h2>Group by clause</h2> <h2>$group_string</h2>
<pre>$group_string : string</pre> <pre>$group_string </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24having_map" id="$having_map"> </a><div class="element clickable property private $having_map" data-toggle="collapse" data-target=".$having_map .collapse"> <a name="%24having_map" id="$having_map"> </a><div class="element clickable property private $having_map" data-toggle="collapse" data-target=".$having_map .collapse">
<h2>Map for having clause</h2> <h2>$having_map</h2>
<pre>$having_map : array</pre> <pre>$having_map </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24limit" id="$limit"> </a><div class="element clickable property private $limit" data-toggle="collapse" data-target=".$limit .collapse"> <a name="%24limit" id="$limit"> </a><div class="element clickable property private $limit" data-toggle="collapse" data-target=".$limit .collapse">
<h2>Value for limit string</h2> <h2>$limit</h2>
<pre>$limit : int</pre> <pre>$limit </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24offset" id="$offset"> </a><div class="element clickable property private $offset" data-toggle="collapse" data-target=".$offset .collapse"> <a name="%24offset" id="$offset"> </a><div class="element clickable property private $offset" data-toggle="collapse" data-target=".$offset .collapse">
<h2>Value for offset in limit string</h2> <h2>$offset</h2>
<pre>$offset : int</pre> <pre>$offset </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24order_array" id="$order_array"> </a><div class="element clickable property private $order_array" data-toggle="collapse" data-target=".$order_array .collapse"> <a name="%24order_array" id="$order_array"> </a><div class="element clickable property private $order_array" data-toggle="collapse" data-target=".$order_array .collapse">
<h2>Key/val pairs for order by clause</h2> <h2>$order_array</h2>
<pre>$order_array : array</pre> <pre>$order_array </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24order_string" id="$order_string"> </a><div class="element clickable property private $order_string" data-toggle="collapse" data-target=".$order_string .collapse"> <a name="%24order_string" id="$order_string"> </a><div class="element clickable property private $order_string" data-toggle="collapse" data-target=".$order_string .collapse">
<h2>Order by clause</h2> <h2>$order_string</h2>
<pre>$order_string : string</pre> <pre>$order_string </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24query_map" id="$query_map"> </a><div class="element clickable property private $query_map" data-toggle="collapse" data-target=".$query_map .collapse"> <a name="%24query_map" id="$query_map"> </a><div class="element clickable property private $query_map" data-toggle="collapse" data-target=".$query_map .collapse">
<h2>Query component order mapping <h2>$query_map</h2>
for complex select queries</h2> <pre>$query_map </pre>
<pre>$query_map : array</pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"><p>Format:</p> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
<p>array(
'type' => 'where',
'conjunction' => ' AND ',
'string' => 'k=?'
)</p></p></div></div>
</div> </div>
<a name="%24select_string" id="$select_string"> </a><div class="element clickable property private $select_string" data-toggle="collapse" data-target=".$select_string .collapse"> <a name="%24select_string" id="$select_string"> </a><div class="element clickable property private $select_string" data-toggle="collapse" data-target=".$select_string .collapse">
<h2>Compiled 'select' clause</h2> <h2>$select_string</h2>
<pre>$select_string : string</pre> <pre>$select_string </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24set_array_keys" id="$set_array_keys"> </a><div class="element clickable property private $set_array_keys" data-toggle="collapse" data-target=".$set_array_keys .collapse"> <a name="%24set_array_keys" id="$set_array_keys"> </a><div class="element clickable property private $set_array_keys" data-toggle="collapse" data-target=".$set_array_keys .collapse">
<h2>Keys for insert/update statement</h2> <h2>$set_array_keys</h2>
<pre>$set_array_keys : array</pre> <pre>$set_array_keys </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24set_string" id="$set_string"> </a><div class="element clickable property private $set_string" data-toggle="collapse" data-target=".$set_string .collapse"> <a name="%24set_string" id="$set_string"> </a><div class="element clickable property private $set_string" data-toggle="collapse" data-target=".$set_string .collapse">
<h2>Compiled arguments for insert / update</h2> <h2>$set_string</h2>
<pre>$set_string : string</pre> <pre>$set_string </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
<a name="%24values" id="$values"> </a><div class="element clickable property private $values" data-toggle="collapse" data-target=".$values .collapse"> <a name="%24values" id="$values"> </a><div class="element clickable property private $values" data-toggle="collapse" data-target=".$values .collapse">
<h2>Values to apply to prepared statements</h2> <h2>$values</h2>
<pre>$values : array</pre> <pre>$values </pre>
<div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div>
<a name="%24where_values" id="$where_values"> </a><div class="element clickable property private $where_values" data-toggle="collapse" data-target=".$where_values .collapse">
<h2>$where_values</h2>
<pre>$where_values </pre>
<div class="labels"></div> <div class="labels"></div>
<div class="row collapse"><div class="span8"><p class="long_description"></p></div></div> <div class="row collapse"><div class="span8"><p class="long_description"></p></div></div>
</div> </div>
@ -1317,7 +1365,7 @@ for complex select queries</h2>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -145,7 +145,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -121,6 +121,7 @@ method if the database does not support 'TRUNCATE';</span><pre>empty_table()</pr
<li class="method protected inherited"><a href="#_quote" title="_quote :: Helper method for quote_ident"><span class="description">Helper method for quote_ident</span><pre>_quote()</pre></a></li> <li class="method protected inherited"><a href="#_quote" title="_quote :: Helper method for quote_ident"><span class="description">Helper method for quote_ident</span><pre>_quote()</pre></a></li>
<li class="nav-header"> <li class="nav-header">
<i class="icon-custom icon-property"></i> Properties</li> <i class="icon-custom icon-property"></i> Properties</li>
<li class="property public inherited"><a href="#%24last_query" title="$last_query :: Last query executed"><span class="description">Last query executed</span><pre>$last_query</pre></a></li>
<li class="property public inherited"><a href="#%24sql" title="$sql :: Reference to sql sub class"><span class="description">Reference to sql sub class</span><pre>$sql</pre></a></li> <li class="property public inherited"><a href="#%24sql" title="$sql :: Reference to sql sub class"><span class="description">Reference to sql sub class</span><pre>$sql</pre></a></li>
<li class="property public inherited"><a href="#%24util" title="$util :: Reference to util sub class"><span class="description">Reference to util sub class</span><pre>$util</pre></a></li> <li class="property public inherited"><a href="#%24util" title="$util :: Reference to util sub class"><span class="description">Reference to util sub class</span><pre>$util</pre></a></li>
<li class="nav-header protected">» Protected</li> <li class="nav-header protected">» Protected</li>
@ -644,10 +645,16 @@ method if the database does not support 'TRUNCATE';</h2>
<div class="labels"><span class="label">Inherited</span></div> <div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="span8"> <div class="row collapse"><div class="span8">
<p class="long_description"></p> <p class="long_description"></p>
<table class="table table-bordered"><tr> <table class="table table-bordered">
<tr>
<th>see</th>
<td>\http://us3.php.net/manual/en/pdostatement.rowcount.php#87110</td>
</tr>
<tr>
<th>inherited_from</th> <th>inherited_from</th>
<td>\DB_PDO::num_rows()</td> <td>\DB_PDO::num_rows()</td>
</tr></table> </tr>
</table>
<h3>Returns</h3> <h3>Returns</h3>
<div class="subelement response"><code>int</code></div> <div class="subelement response"><code>int</code></div>
</div></div> </div></div>
@ -873,6 +880,18 @@ method if the database does not support 'TRUNCATE';</h2>
</div> </div>
<h3> <h3>
<i class="icon-custom icon-property"></i> Properties</h3> <i class="icon-custom icon-property"></i> Properties</h3>
<a name="%24last_query" id="$last_query"> </a><div class="element clickable property public $last_query" data-toggle="collapse" data-target=".$last_query .collapse">
<h2>Last query executed</h2>
<pre>$last_query : string</pre>
<div class="labels"><span class="label">Inherited</span></div>
<div class="row collapse"><div class="span8">
<p class="long_description"></p>
<table class="table table-bordered"><tr>
<th>inherited_from</th>
<td>\DB_PDO::$$last_query</td>
</tr></table>
</div></div>
</div>
<a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse"> <a name="%24sql" id="$sql"> </a><div class="element clickable property public $sql" data-toggle="collapse" data-target=".$sql .collapse">
<h2>Reference to sql sub class</h2> <h2>Reference to sql sub class</h2>
<pre>$sql : Object</pre> <pre>$sql : Object</pre>
@ -922,7 +941,7 @@ method if the database does not support 'TRUNCATE';</h2>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -309,7 +309,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -209,7 +209,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -68,7 +68,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -57,6 +57,7 @@
<button class="btn critical">Critical</button><button class="btn error">Error</button><button class="btn notice">Notice</button> <button class="btn critical">Critical</button><button class="btn error">Error</button><button class="btn notice">Notice</button>
</div></li> </div></li>
<li class="nav-header">Navigation</li> <li class="nav-header">Navigation</li>
<li><a href="#classes/query_builder.php"><i class="icon-file"></i>classes/query_builder.php</a></li>
</ul></div> </ul></div>
<div class="span8"> <div class="span8">
<ul class="breadcrumb"> <ul class="breadcrumb">
@ -65,11 +66,113 @@
</li> </li>
<li>Compilation Errors</li> <li>Compilation Errors</li>
</ul> </ul>
<div class="alert alert-info">No errors have been found in this project.</div>
<div class="package-contents"></div>
<div class="package-contents"></div> <div class="package-contents"></div>
<div class="package-contents"></div> <div class="package-contents"></div>
<div class="package-contents"></div> <div class="package-contents"></div>
<div class="package-contents">
<a name="classes/query_builder.php" id="classes/query_builder.php"></a><h3>
<i class="icon-file"></i>classes/query_builder.php<small style="float: right;padding-right: 10px;">18</small>
</h3>
<div><table class="table markers table-bordered">
<thead><tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr></thead>
<tbody>
<tr class="error">
<td>error</td>
<td>50</td>
<td>No DocBlock was found for property $select_string</td>
</tr>
<tr class="error">
<td>error</td>
<td>53</td>
<td>No DocBlock was found for property $from_string</td>
</tr>
<tr class="error">
<td>error</td>
<td>56</td>
<td>No DocBlock was found for property $set_string</td>
</tr>
<tr class="error">
<td>error</td>
<td>59</td>
<td>No DocBlock was found for property $order_string</td>
</tr>
<tr class="error">
<td>error</td>
<td>62</td>
<td>No DocBlock was found for property $group_string</td>
</tr>
<tr class="error">
<td>error</td>
<td>69</td>
<td>No DocBlock was found for property $set_array_keys</td>
</tr>
<tr class="error">
<td>error</td>
<td>72</td>
<td>No DocBlock was found for property $order_array</td>
</tr>
<tr class="error">
<td>error</td>
<td>75</td>
<td>No DocBlock was found for property $group_array</td>
</tr>
<tr class="error">
<td>error</td>
<td>82</td>
<td>No DocBlock was found for property $values</td>
</tr>
<tr class="error">
<td>error</td>
<td>85</td>
<td>No DocBlock was found for property $where_values</td>
</tr>
<tr class="error">
<td>error</td>
<td>88</td>
<td>No DocBlock was found for property $limit</td>
</tr>
<tr class="error">
<td>error</td>
<td>91</td>
<td>No DocBlock was found for property $offset</td>
</tr>
<tr class="error">
<td>error</td>
<td>94</td>
<td>No DocBlock was found for property $sql</td>
</tr>
<tr class="error">
<td>error</td>
<td>97</td>
<td>No DocBlock was found for property $table_prefix</td>
</tr>
<tr class="error">
<td>error</td>
<td>108</td>
<td>No DocBlock was found for property $query_map</td>
</tr>
<tr class="error">
<td>error</td>
<td>111</td>
<td>No DocBlock was found for property $having_map</td>
</tr>
<tr class="error">
<td>error</td>
<td>114</td>
<td>No DocBlock was found for property $conn_name</td>
</tr>
<tr class="error">
<td>error</td>
<td>117</td>
<td>No DocBlock was found for property $queries</td>
</tr>
</tbody>
</table></div>
</div>
<div class="package-contents"></div> <div class="package-contents"></div>
<div class="package-contents"></div> <div class="package-contents"></div>
<div class="package-contents"></div> <div class="package-contents"></div>
@ -93,7 +196,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -65,7 +65,7 @@
</script><div class="row"><footer class="span12"> </script><div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -146,7 +146,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -318,7 +318,7 @@ instantiates the specific db driver</p>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -68,7 +68,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -95,7 +95,7 @@
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -212,7 +212,7 @@ data-fetching methods</p>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -140,7 +140,7 @@ instantiates the specific db driver</p>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu"> Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors 
<span class="label label-info">0</span></a></li> <span class="label label-info">18</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers 
<ul><li>todo  <ul><li>todo 
<span class="label label-info">4</span> <span class="label label-info">4</span>
@ -339,7 +339,7 @@ instantiates the specific db driver</p>
<div class="row"><footer class="span12"> <div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-09-13T15:45:05Z.<br></footer></div> generated on 2012-10-30T16:14:25Z.<br></footer></div>
</div> </div>
</body> </body>
</html> </html>

File diff suppressed because it is too large Load Diff

Binary file not shown.