summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorxue <>2006-11-25 03:48:22 +0000
committerxue <>2006-11-25 03:48:22 +0000
commitb09acac59340fca37b5149cc0354093b7d7ab015 (patch)
tree069e4222565f94f5efd70fa8eff48f4eb42fb6dd /framework
parentd877676a3b2432fccfc5ce97e42008f9ce20c94d (diff)
DB layer is completed.
Diffstat (limited to 'framework')
-rw-r--r--framework/Data/TDbDataReader.php42
1 files changed, 29 insertions, 13 deletions
diff --git a/framework/Data/TDbDataReader.php b/framework/Data/TDbDataReader.php
index ad3132b0..1d846839 100644
--- a/framework/Data/TDbDataReader.php
+++ b/framework/Data/TDbDataReader.php
@@ -80,8 +80,8 @@ class TDbDataReader extends TComponent implements Iterator
}
/**
- * Advances the reader to the next record in a result set.
- * @return array|false the current record, false if no more row available
+ * Advances the reader to the next row in a result set.
+ * @return array|false the current row, false if no more row available
*/
public function read()
{
@@ -89,8 +89,30 @@ class TDbDataReader extends TComponent implements Iterator
}
/**
+ * Returns a single column from the next row of a result set.
+ * @param int zero-based column index
+ * @return mixed|false the column of the current row, false if no more row available
+ */
+ public function readColumn($columnIndex)
+ {
+ return $this->_statement->fetchColumn($columnIndex);
+ }
+
+ /**
+ * Returns a single column from the next row of a result set.
+ * @param string class name of the object to be created and populated
+ * @param array list of column names whose values are to be passed as parameters in the constructor of the class being created
+ * @return mixed|false the populated object, false if no more row of data available
+ */
+ public function readObject($className,$fields)
+ {
+ return $this->_statement->fetchObject($className,$fields);
+ }
+
+ /**
* Reads the whole result set into an array.
- * @return array|false the result set (each array element represents a row of data), false if no data is available.
+ * @return array the result set (each array element represents a row of data).
+ * An empty array will be returned if the result contains no row.
*/
public function readAll()
{
@@ -126,16 +148,9 @@ class TDbDataReader extends TComponent implements Iterator
}
/**
- * @return boolean whether the result contains any row of data
- */
- public function getHasRows()
- {
- return $this->getRowCount()>0;
- }
-
- /**
* @return int number of rows contained in the result.
- * Note, some DBMS may not give a meaningful count.
+ * Note, most DBMS may not give a meaningful count.
+ * In this case, use "SELECT COUNT(*) FROM tableName" to obtain the number of rows.
*/
public function getRowCount()
{
@@ -143,7 +158,8 @@ class TDbDataReader extends TComponent implements Iterator
}
/**
- * @return int the number of columns in the result set, 0 if the result is empty
+ * @return int the number of columns in the result set.
+ * Note, even there's no row in the reader, this still gives correct column number.
*/
public function getColumnCount()
{