Documentation is available at ResultTable.php
- <?php
- /**
- * A ResultTable is tabular data returned by a query. You access the returned
- * data by calling the method getRows() which returns a RowIterator.
- *
- * <p>
- * OSID Version: 2.0
- * </p>
- *
- * <p>
- * Licensed under the {@link org.osid.SidImplementationLicenseMIT MIT}
- * O.K.I. OSID Definition License}.
- * </p>
- *
- * @package org.osid.sql
- */
- class ResultTable
- {
- /**
- * return the number of columns in this ResultTable.
- *
- * @return int
- *
- * @throws object SqlException An exception with one of the following
- * messages defined in org.osid.sql.SqlException may be thrown:
- * {@link org.osid.sql.SqlException#OPERATION_FAILED}
- * OPERATION_FAILED}, {@link }
- * org.osid.sql.SqlException#PERMISSION_DENIED PERMISSION_DENIED},
- * {@link org.osid.sql.SqlException#CONFIGURATION_ERROR}
- * CONFIGURATION_ERROR}, {@link }
- * org.osid.sql.SqlException#UNIMPLEMENTED UNIMPLEMENTED}
- *
- * @access public
- */
- function getColumnCount () {
- die ("Method <b>".__FUNCTION__."()</b> declared in interface<b> ".__CLASS__."</b> has not been overloaded in a child class.");
- }
- /**
- * return the columnar metadata of this ResultTable.
- *
- * @return object ResultMetaDataIterator
- *
- * @throws object SqlException An exception with one of the following
- * messages defined in org.osid.sql.SqlException may be thrown:
- * {@link org.osid.sql.SqlException#DATA_RETRIEVAL_ERROR}, {@link }
- * org.osid.sql.SqlException#OPERATION_FAILED OPERATION_FAILED},
- * {@link org.osid.sql.SqlException#PERMISSION_DENIED}
- * PERMISSION_DENIED}, {@link }
- * org.osid.sql.SqlException#CONFIGURATION_ERROR
- * CONFIGURATION_ERROR}, {@link }
- * org.osid.sql.SqlException#UNIMPLEMENTED UNIMPLEMENTED}
- *
- * @access public
- */
- function getResultMetaData () {
- die ("Method <b>".__FUNCTION__."()</b> declared in interface<b> ".__CLASS__."</b> has not been overloaded in a child class.");
- }
- /**
- * return the rows of this ResultTable.
- *
- * @return object RowIterator
- *
- * @throws object SqlException An exception with one of the following
- * messages defined in org.osid.sql.SqlException may be thrown:
- * {@link org.osid.sql.SqlException#DATA_RETRIEVAL_ERROR}, {@link }
- * org.osid.sql.SqlException#OPERATION_FAILED OPERATION_FAILED},
- * {@link org.osid.sql.SqlException#PERMISSION_DENIED}
- * PERMISSION_DENIED}, {@link }
- * org.osid.sql.SqlException#CONFIGURATION_ERROR
- * CONFIGURATION_ERROR}, {@link }
- * org.osid.sql.SqlException#UNIMPLEMENTED UNIMPLEMENTED}
- *
- * @access public
- */
- function getRows () {
- die ("Method <b>".__FUNCTION__."()</b> declared in interface<b> ".__CLASS__."</b> has not been overloaded in a child class.");
- }
- }
- ?>
Documentation generated on Wed, 19 Sep 2007 10:26:05 -0400 by phpDocumentor 1.3.0RC3