MysqL程序。(a.PHP)
PHP">
MysqL数据的程序。(b.PHP)
PHP">
MysqL数据的程序。(c.PHP)
PHP">query("select * from {$dbtbpre}ecms_news order by newstime limit 10"); //查询新闻表最新10条记录 while($r=$empire->fetch($sql)) //循环获取查询记录 { echo"标题:".$r['title']." "; } db_close(); //关闭MysqL链接 $empire=null; //注消操作类变量 ?>
sql.PHP文件中数据库操作类常用的函数说明: 1、执行sql函数:
query("sql语句"); $empire->query1("sql语句"); 说明: 执行成功返回true,执行不成功返回false ; 两者区别是:query()出错直接中断程序执行,query1()出错不中断程序执行。 使用范例:
query("select * from {$dbtbpre}ecms_news");2、循环读取数据库记录函数:
fetch($sql) 说明: $sql为query执行sql返回的结果。 使用范例:
query("select * from {$dbtbpre}ecms_news"); while($r=$empire->fetch($sql)) { echo"标题:".$r['title']." "; }
数据库记录函数:(不循环)
fetch1("sql语句")使用范例:
fetch1("select * from {$dbtbpre}ecms_news where id=1"); echo"标题:".$r['title'];4、统计SQL查询记录数函数:
num("sql语句") $empire->num1($sql)说明: 两者的区别是:num()直接写sql语句,而num1()中的$sql为query执行sql返回的结果。 使用范例:
num("select id from {$dbtbpre}ecms_news"); echo"新闻表共有 ".$num." 条新闻";5、统计SQL查询记录数函数2:(相对于num更高效的函数)
gettotal("统计sql语句");说明: gettotal()和num()的区别是:gettotal()采用sql本身的count(*)函数来统计,而num()是采用PHP本身的函数,gettotal()更高效一些。 gettotal()里的统计数一定要as total,如:“count(*) as total”。 使用范例:
gettotal("select count(*) as total from {$dbtbpre}ecms_news"); echo"新闻表共有 ".$num." 条新闻";6、取得刚插入表的自增ID值函数:
lastid()使用范例:
query("insert into {$dbtbpre}ecms_news(title) values('标题')"); $lastid=$empire->lastid();echo"刚插入的信息ID为:".$lastid; 7、移动SQL查询结果记录指针: $empire->seek($sql,$pit) 说明: $sql为query执行sql返回的结果,$pit为指针的偏移数。 使用范例:
query("select * from {$dbtbpre}ecms_news"); $empire->seek($sql,2);8、释放SQL查询结果函数:(一般不需要使用)
free($sql)说明: $sql为query执行sql返回的结果。 使用范例:
query("select * from {$dbtbpre}ecms_news"); $empire->free($sql);原文链接:https://www.f2er.com/empirecms/403654.html