summaryrefslogtreecommitdiff
path: root/it_dbi.class
diff options
context:
space:
mode:
authorChristian Schneider2007-10-11 02:22:16 +0000
committerChristian Schneider2007-10-11 02:22:16 +0000
commit8b9220916723e3efd1e0cfca2f2e356b142fb8e1 (patch)
tree1ebff2a2b48364518604f74afa164ddb3202723d /it_dbi.class
parent4a6c6bad9383aad857b491c4d7fb1cc81d247a0f (diff)
downloaditools-8b9220916723e3efd1e0cfca2f2e356b142fb8e1.tar.gz
itools-8b9220916723e3efd1e0cfca2f2e356b142fb8e1.tar.bz2
itools-8b9220916723e3efd1e0cfca2f2e356b142fb8e1.zip
Improve documentation cross reference
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())
{