summaryrefslogtreecommitdiff
path: root/it_dbi.class
diff options
context:
space:
mode:
Diffstat (limited to 'it_dbi.class')
-rw-r--r--it_dbi.class4
1 files changed, 2 insertions, 2 deletions
diff --git a/it_dbi.class b/it_dbi.class
index 161dbce..9cab98a 100644
--- a/it_dbi.class
+++ b/it_dbi.class
@@ -203,7 +203,7 @@ function _set(&$tags)
* Create an SQL query (the stuff after 'WHERE') according to
* an array of selection criteria.<br>
* Example:<br>
- * $sql = $table->construct_sql_clause(array('Type' => 'bar',
+ * $sql = $table->_where(array('Type' => 'bar',
* 'Date >=' => '1999-01-01', '-Date <' => 'NOW()',
* 'User NI' => 'chris'), 'ORDER BY Date');
*
@@ -425,7 +425,7 @@ function read($id=null)
* If magic field 'CALC_FOUND_ROWS' is true, sets member var _found_rows to number of matching rows without LIMIT
* If magic field 'NOFETCH' is true, then the first row is not prefetched (e.g. when directly using _result)
* @return Number of matching rows, use iterate() to fetch the next record
- * @see it_dbi::iterate(), it_db_table::construct_sql_clause()
+ * @see it_dbi::iterate(), it_dbi::_where()
*/
function select($query = null)
{