本文整理汇总了PHP中db2_field_type函数的典型用法代码示例。如果您正苦于以下问题:PHP db2_field_type函数的具体用法?PHP db2_field_type怎么用?PHP db2_field_type使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了db2_field_type函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: fieldType
/**
* db2_field_type() wrapper
* @param $res Object: result of executed statement
* @param $index Mixed: number or name of the column
* @return String column type
*/
public function fieldType($res, $index)
{
if ($res instanceof ResultWrapper) {
$res = $res->result;
}
if ($res instanceof IBM_DB2Result) {
$res = $res->getResult();
}
return db2_field_type($res, $index);
}
示例2: ADOFieldObject
function &FetchField($offset = -1)
{
$o = new ADOFieldObject();
$o->name = @db2_field_name($this->_queryID, $offset);
$o->type = @db2_field_type($this->_queryID, $offset);
$o->max_length = db2_field_width($this->_queryID, $offset);
if (ADODB_ASSOC_CASE == 0) {
$o->name = strtolower($o->name);
} else {
if (ADODB_ASSOC_CASE == 1) {
$o->name = strtoupper($o->name);
}
}
return $o;
}
示例3: getColumnMeta
public static function getColumnMeta($index, $sql)
{
if ($sql && $index >= 0) {
$newmeta = array();
$newmeta["name"] = db2_field_name($sql, $index);
$newmeta["native_type"] = db2_field_type($sql, $index);
$newmeta["len"] = db2_field_width($sql, $index);
return $newmeta;
}
return false;
}