Source for file MySQL_constants.inc.php
Documentation is available at MySQL_constants.inc.php
* Constants need for the mysql subpackage.
* Used as flag in serveral Methods of this class to get a result array in a
* special kind. This is the default value. It effects that the result array
* will output as a mixture of an associative and a index based array.
define( "MYSQL_OUTPUT_DEFAULT", 0 );
* Used as flag in serveral Methods of this class to get a result array in a
* special kind. This effects that the result array will output as an
define( "MYSQL_OUTPUT_ASSOC", 1 );
* Used as flag in serveral Methods of this class to get a result array in a
* special kind. This effects that the result array will output as an index
define( "MYSQL_OUTPUT_NUM", 2 );
|