/**
* SqlInfo
* Provides column/field metadata on executed mysqli resultset
*
* @author Informatica Asociada
* @copyright 2015
* @version 1.0.2
*//**
* SqlInfo constructor.
* @param IaMysqli $db
*//**
* return mysqli type for the field
*
* @param integer $type_id from $result->fetch_field()->type or $result->fetch_field_direct($i)->type
* @return string mysql type for id
*//**
* Return an array with enum/set columns as their key and an array of its values
*
* @param string $table table from where to extract enums & sets
* @return array ['fieldName'=>['value1', 'value2', ...]]
*//** __________________ Indexes _________________________ *//**
* Get mysqli flags
*
* @param integer $flags_num from $result->fetch_field()->flags or $result->fetch_field_direct($i)->flags
* @return array associative array with flag names indexed by mysqli constant
*/Disclaimer: Auto generated file. Please help us setting parameters to useful values and extending the examples.Warning: Undefined variable $gSqlClass in /lamp/www/iaLib/ia_examples/code/ia/Sql/Mysql/SqlInfo_example_code.php on line 21
/**
* SqlInfo constructor.
* @param IaMysqli $db
*/
/*
$sqlInfo = new SqlInfo(IaMysqli $db);
*/
$sqlInfo = new SqlInfo();
Warning: Undefined variable $gSqlClass in /lamp/www/iaLib/ia_examples/code/ia/Sql/Mysql/SqlInfo_example_code.php on line 26
|