-
2013-12-14
Introduction概述
Tables have relationships to each other in a relational database. An entity in one table can be linked to one or more entities in another table by using referential integrity constraints defined in the database schema.
The Zend_Db_Table_Row class has methods…
http://www.wfuyu.com/zf/693.html
-
2013-12-04
<?php $serverSite="."; $db="phpdemo"; $name="sa"; $pass="sa"; $conn=@mssql_connect($serverSite,$name,$pass) or die("数据库连接错误!"); @mssql_select_db("phpdemo",$conn); echo 'this can be use!'; $ok=@mssql_query(&…
http://www.wfuyu.com/php/684.html
-
2014-01-29
Zend_Db_Profiler
Introduction简介
Zend_Db_Profiler can be enabled to allow profiling of queries.
Profiles include the queries processed by the adapter as well as elapsed time to run the queries, allowing inspection of the queries that have been performed without nee…
http://www.wfuyu.com/zf/644.html
-
2014-03-21
很多时候,大家都是要 “接过别人手中的枪” ,在已有的代码上进行开发、修改……所以,很多时候,总是对数据的存储结构不是很熟悉,影响工作的效率,浪费大量时间在查阅数据库存储结构上。(当然了,用GUI类数据库工具的可能除外。)
因为我比较依赖VIM + mysql clien…
http://www.wfuyu.com/php/618.html
-
2014-03-18
代码如下:
function list_tables($database)
{
$rs = mysql_list_tables($database);
$tables = array();
while ($row = mysql_fetch_row($rs)) {
$tables[] = $row[0];
}
mysql_free_result($rs);
return $tables;
}
但由于mysql_list_tables方法已经过时,运行以上程序时…
http://www.wfuyu.com/php/584.html
-
2014-01-30
MySQL数据库创建之后,你是否有经常打开看看?可能大家觉得MySQL数据库比较陌生、复杂而没有去触碰它,但是要是你使用Wordpss有段时间又不可避免会在数据库中留下一些冗余的东西需要清理,想要优化MySQL数据库,那么就按照这篇文章的方法来执行吧!
在开始之前,先检查下你的主机商有没有为你安装ph…
http://www.wfuyu.com/wordpress/543.html
-
2013-12-29
在上一篇:PHP脚本与数据库功能详解(中),利用PHP将文件保存到数据库,下面我们接着说用类加快PHP的数据库开发 数据库的访问函数较多,使用不当会降低效率,甚至导致错误。而PHP的本身就是开放的和可扩充的,很多人为它开发各种功能的源代码。每一个PHP程序员都应该善于继承他人的成果,节省时间…
http://www.wfuyu.com/php/411.html
-
2014-06-13
上一节,大概了解了Zend Framework完成数据库操作的常用类,下面一一简单介绍其用法。
Zend_Db_Adapter是我们操作数据库的常用方式,以下是几个比较重要的功能使用说明:
1.建立数据库链接
require_once 'Zend/Db.php';
$params = array ('host' => '127.0.0.1',
…
http://www.wfuyu.com/zf/331.html
-
2014-06-20
上一篇:PHP脚本与数据库功能详解(上)
利用PHP将文件保存到数据库 数据库是数据组织、存储的中心。将要处理的也可能是各种数据,包括程序、文件、报表,甚至音频、视频数据。由于通过浏览器,个人用户只能填写少部分的个人简历。因此,我们这里示范用户个人简历上载的功能。其他类型的数据可以…
http://www.wfuyu.com/php/135.html
-
2014-03-27
网(LieHuo.Net)教程 在前面的文章中,我们分别介绍了《Windows 2008 IIS7》和《Windows 2008 IIS7的配置与目录》的安装与配置,那么安装动易系统前,请设置好数据库名称,数据库用户名称,数据库用户口令,缺一不可,下面将详细讲解设置过程。
下面为SQL SERVER 2005为例。
第一步,设置S…
http://www.wfuyu.com/dedecms/100.html