diff options
author | Christian Weber | 2007-09-18 13:44:15 +0000 |
---|---|---|
committer | Christian Weber | 2007-09-18 13:44:15 +0000 |
commit | 373d18ee96940c7cd35564719f9366c3438e4a74 (patch) | |
tree | 0bfeb0fd959510c57655eaefd3f57dfdc54d5806 | |
parent | 80889886cf289f391b86c08dc1ada1690e262e25 (diff) | |
download | itools-373d18ee96940c7cd35564719f9366c3438e4a74.tar.gz itools-373d18ee96940c7cd35564719f9366c3438e4a74.tar.bz2 itools-373d18ee96940c7cd35564719f9366c3438e4a74.zip |
documentation
-rw-r--r-- | it_dbi.class | 4 |
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) { |