您的位置:首页技术开发数据库教程 → MySQL数据库函数详解4

MySQL数据库函数详解4

时间:2004/11/7 4:14:00来源:本站整理作者:蓝点我要评论(0)

作者:随想 OSO奥索 (13) object mysql_fetch_object(int result_id [, int result_typ]);

本函式用来将查询结果 result 拆到物件变数中。使用方法和 mysql_fetch_array() 几乎相同,不同的地方在于本函式传回资料是物件而不是阵列。若 result 没有资料,则传回 false 值。另外值得注意的地方是,取回的物件资料的索引只能是文字而不能用数字,这是因为物件的特性。物件资料的特性中所有的属性(property) 名称都不能是数字,因此只好乖乖使用文字字串当索引了。参数 result_typ是一个常数值,有以下几种常数 MYSQL_ASSOC、MYSQL_NUM 与 MYSQL_BOTH。关于速度方面,本函式的处理速度几乎和mysql_fetch_row() 及 mysql_fetch_array() 二函式差不多,要用哪个函式还是看使用的需求决定。




$link=mysql_pconnect("localhost","sunsoft","suixiang") or die("Could not connect");

mysql_select_db("stamp_db") or die("Could not select database");

$query="SELECT last_name,first_name FROM president";

$result=mysql_query($query) or die("Query failed");

while($row=mysql_fetch_object($result))

printf("%s %s


",$row->last_name,$row->first_name);

mysql_free_result($result);

?>



(14) array mysql_fetch_row(int result);

作为一个数组返回给定结果集的下一行,如果没有更多的行,则返回假。列值可作为数组元素访问,在0到mysql_num_fields()-1范围内使用列索引。




$link=mysql_pconnect("localhost","sunsoft","suixiang") or die("Could not connect");

mysql_select_db("stamp_db") or die("Could not select database");

$query="SELECT last_name,first_name FROM president";

$result=mysql_query($query) or die("Query failed");

while($row=mysql_fetch_row($result))

printf("%s %s


",$row[0],$row[1]);

mysql_free_result($result);

?>



(15) string mysql_field_name(int result, int field_index);

返回结果集的给定列的名称。

col_num 的范围为0到mysql_num_fields()-1.




$link=mysql_pconnect("localhost","sunsoft","suixiang") or die("Could not connect");

mysql_select_db("stamp_db") or die("Could not select database");

$query="SELECT * FROM president";

$result=mysql_query($query) or die("Query failed");

for($i=0;$i
{

printf("Name of column %d:",$i);

$name=mysql_field_name($result,$i);

if(!$name)

print("No name available


");

else

print("$name


");

}

?>





(16) int mysql_field_seek(int result, int field_offset);

为随后的mysql_fetch_field()调用设置索引。发布没有明确列号的mysql_fetch_field()的下一次调用,将返回列col_num的信息。如果搜索成功,返回真,否则返回假。

col_num的范围为0到mysql_num_fields()-1.




$link=mysql_pconnect("localhost","sunsoft","suixiang") or die("Could not connect");

mysql_select_db("stamp_db") or die("Could not select database");

$query="SELECT * FROM president";

$result=mysql_query($query) or die("Query failed");

for($i=0;$i
{

printf("Information for column %d:


",$i);

if(!mysql_field_seek($result,$i))

{

print("Cannot seek to colum


");

continue;

}

$meta=mysql_fetch_field($result,$i);

if(!$meta)

{

print("No information available


");

continue;

}

print("


");

printf("blob: %s

",$meta->blob);

printf("max_length: %s

",$meta->max_length);

printf("multiple_key: %s

",$meta->multiple_key);

printf("name: %s

",$meta->name);

printf("not_null: %s

",$meta->not_null);

printf("numeric: %s

",$meta->numeric);

printf("primary_key: %s

",$meta->primary_key);

printf("table: %s

",$meta->table);

printf("type: %s

",$meta->type);

printf("unique_key: %s

",$meta->unique_key);

printf("unsigned: %s

",$meta->unsigned);

printf("zerofill: %s

",$meta->zerofill);

print("


");

}

?>




相关阅读 Windows错误代码大全 Windows错误代码查询激活windows有什么用Mac QQ和Windows QQ聊天记录怎么合并 Mac QQ和Windows QQ聊天记录Windows 10自动更新怎么关闭 如何关闭Windows 10自动更新windows 10 rs4快速预览版17017下载错误问题Win10秋季创意者更新16291更新了什么 win10 16291更新内容windows10秋季创意者更新时间 windows10秋季创意者更新内容kb3150513补丁更新了什么 Windows 10补丁kb3150513是什么

文章评论
发表评论

热门文章 oracle10g安装图解(wi

最新文章 数据库流行度排行2019oracle10g安装图解(wi SQL2008全部数据导出导入两种方法SQL2005新建复制“找不到存储过程 错误:28Dos远程登录mysql数据库详细图文教程mysql怎么开启远程登录功能

人气排行 mysql自动定时备份数据库的最佳方法-支持wiVisual Foxpro 6.0安装向导图文教程SQL Server 2008 安装图文教程SQL2008全部数据导出导入两种方法SQL 2000/2005/2008 的收缩日志方法,和清理mysql出 Can't connect to MySQL server onoracle10g安装图解(win7)sql2005安装图解_(sql server2005)安装教程