Home > Backend Development > PHP Tutorial > php如何获取Access的字段名称

php如何获取Access的字段名称

WBOY
Release: 2016-06-13 10:32:46
Original
1049 people have browsed it

求助 php怎么获取Access的字段名称
今天做东西 要获取Access数据库里面的东西 数据我已经获取到了 但是 怎么获取 表的字段名称呢  

我获取到的都是 数字 不显示表的字段名称 


//=================================================================
// get record list
// 取得记录列表
//=================================================================
  public function getlist($table,$field,$fieldnum,$condition="",$sort="")//取得记录列表
  {
  $sql="SELECT ".$field." FROM ".$table." ".$condition." ".$sort;
  $query=$this->query($sql);
  $i=0;
  while ($this->fetch_row($query)) 
  {
  for ($j=0;$j   {
  $info[$j]=odbc_result($query,$j+1);
  }  
  $rdlist[$i]=$info;
  $i++;
  }
  return $rdlist;
  }


这是我写的方法

------解决方案--------------------
没用过odbc 你看下有没有类似 mysql_fetch_array() mysql_fetch_assoc() 这一类的方法 就可直接用表中的字段名
------解决方案--------------------
odbc_field_name

------解决方案--------------------
mysql_list_fields()函数可以返回表的字段名
------解决方案--------------------
odbc_fetch_into
------解决方案--------------------
 
$connstr="DRIVER=Microsoft Access Driver (*.mdb);DBQ=".realpath("cust.mdb"); 
$conn=odbc_connect($connstr,"","",SQL_CUR_USE_ODBC ); 

$query=odbc_do($conn,"select * from yhxx"); 

//输出记录
while(odbc_fetch_row($query))
{
$id=odbc_result($query,id);
$gonghao=odbc_result($query,gonghao);
echo $id;
echo "
";
echo $gonghao; 
echo "
"; 
}

//输出字段

$num_field = max(odbc_num_fields($query), $num_field); 
for($i = 0; $i
echo @odbc_field_name($query,$i+1);
echo "
";
}

odbc_close($conn);

 

?> 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template