summaryrefslogtreecommitdiff
path: root/it_dbi.class
diff options
context:
space:
mode:
Diffstat (limited to 'it_dbi.class')
-rw-r--r--it_dbi.class10
1 files changed, 6 insertions, 4 deletions
diff --git a/it_dbi.class b/it_dbi.class
index 4e855e4..08cbf3c 100644
--- a/it_dbi.class
+++ b/it_dbi.class
@@ -232,7 +232,8 @@ function _set(&$tags)
* @param $link DB link used to escape values
* @param $omit_where Do not add 'WHERE ' to result
* @return The generated SQL clause
- * @see select(), iterate()
+ * @see select()
+ * @see iterate()
*/
function _where($params = "", $link = null, $omit_where = false)
{
@@ -436,7 +437,8 @@ function read($id=null)
* $query can contain 'CALC_FOUND_ROWS', if true member var _found_rows contains number of matching rows without LIMIT
* $query can contain 'NOFETCH', if true 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_dbi::_where()
+ * @see iterate()
+ * @see _where()
*/
function select($query = null)
{
@@ -491,7 +493,7 @@ function select($query = null)
/**
* Puts next result from previous select() in member variables
* @return true if another record was fetched, false if no more records
- * @see it_dbi::select()
+ * @see select()
*/
function iterate()
{
@@ -553,7 +555,7 @@ function insert($tags = array(), $command = "INSERT")
* Replace a record in a table
* @param $tags Additional key => value pairs (these have priority over member vars)
* Does not destroy internal state of last select() call
- * @see it_dbi::insert()
+ * @see insert()
*/
function replace($tags = array())
{