Update of /cvsroot/phpvortex/phpvortex
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1134
Modified Files:
RS_Base.class.php
Log Message:
Added some extra documentation to RS_Base
Index: RS_Base.class.php
===================================================================
RCS file: /cvsroot/phpvortex/phpvortex/RS_Base.class.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** RS_Base.class.php 28 Sep 2004 21:07:53 -0000 1.2
--- RS_Base.class.php 30 Sep 2004 13:52:02 -0000 1.3
***************
*** 10,15 ****
--- 10,27 ----
*/
+ /**
+ * Return an array with numeric indexes.
+ * Used by {@link RS_Base::Row()} and {@link RS_Base::All()}.
+ */
define('RS_ROW_NUM', 1);
+ /**
+ * Return an array with field names as index.
+ * Used by {@link RS_Base::Row()} and {@link RS_Base::All()}.
+ */
define('RS_ROW_ASSOC', 2);
+ /**
+ * Return an array with both numeric and field name indexes.
+ * Used by {@link RS_Base::Row()} and {@link RS_Base::All()}.
+ */
define('RS_ROW_BOTH', 3);
|