揭露 php 应用程序中出现的五个常见数据库问题 —— 包括数据库模式设计、数据库访问和使用数据库的业务逻辑代码 —— 以及它们的解决方案。
如果只有一种 方式使用数据库是正确的……
您可以用很多的方式创建数据库设计、数据库访问和基于数据库的 php 业务逻辑代码,但最终一般以错误告终。本文说明了数据库设计和访问数据库的 php 代码中出现的五个常见问题,以及在遇到这些问题时如何修复它们。
问题 1:直接使用 mysql
一个常见问题是较老的 php 代码直接使用 mysql_ 函数来访问数据库。清单 1 展示了如何直接访问数据库。
清单 1. access/get.php
<?phpfunction get_user_id( $name ){ $db = mysql_connect( localhost, root, password ); mysql_select_db( users );
$res = mysql_query( “select id from users where login=”.$name.”” ); while( $row = mysql_fetch_array( $res ) ) { $id = $row[0]; }
return $id;}
var_dump( get_user_id( jack ) );?>
注意使用了 mysql_connect 函数来访问数据库。还要注意查询,其中使用字符串连接来向查询添加 $name 参数。
该技术有两个很好的替代方案:pear db 模块和 php data objects (pdo) 类。两者都从特定数据库选择提供抽象。因此,您的代码无需太多调整就可以在 ibm? db2?、mysql、postgresql 或者您想要连接到的任何其他数据库上运行。
使用 pear db 模块和 pdo 抽象层的另一个价值在于您可以在 sql 语句中使用 ? 操作符。这样做可使 sql 更加易于维护,且可使您的应用程序免受 sql 注入攻击。
使用 pear db 的替代代码如下所示。
清单 2. access/get_good.php
<?phprequire_once(“db.php”);
function get_user_id( $name ){ $dsn = mysql://root:password@localhost/users; $db =& db::connect( $dsn, array() ); if (pear::iserror($db)) { die($db->getmessage()); }
$res = $db->query( select id from users where login=?,array( $name ) ); $id = null; while( $res->fetchinto( $row ) ) { $id = $row[0]; }
return $id;}
var_dump( get_user_id( jack ) );?>
注意,所有直接用到 mysql 的地方都消除了,只有 $dsn 中的数据库连接字符串除外。此外,我们通过 ? 操作符在 sql 中使用 $name 变量。然后,查询的数据通过 query() 方法末尾的 array 被发送进来。
问题 2:不使用自动增量功能
与大多数现代数据库一样,mysql 能够在每记录的基础上创建自动增量惟一标识符。除此之外,我们仍然会看到这样的代码,即首先运行一个 select 语句来找到最大的 id,然后将该 id 增 1,并找到一个新记录。清单 3 展示了一个示例坏模式。
清单 3. badid.sql
drop table if exists users;create table users (id mediumint,login text,password text);
insert into users values ( 1, jack, pass );insert into users values ( 2, joan, pass );insert into users values ( 1, jane, pass );
这里的 id 字段被简单地指定为整数。所以,尽管它应该是惟一的,我们还是可以添加任何值,如 create 语句后面的几个 insert 语句中所示。清单 4 展示了将用户添加到这种类型的模式的 php 代码。
清单 4. add_user.php
<?phprequire_once(“db.php”);
function add_user( $name, $pass ){ $rows = array();
$dsn = mysql://root:password@localhost/bad_badid; $db =& db::connect( $dsn, array() ); if (pear::iserror($db)) { die($db->getmessage()); }
$res = $db->query( “select max(id) from users” ); $id = null; while( $res->fetchinto( $row ) ) { $id = $row[0]; }
$id += 1;
$sth = $db->prepare( “insert into users values(?,?,?)” ); $db->execute( $sth, array( $id, $name, $pass ) );
return $id;}
$id = add_user( jerry, pass );
var_dump( $id );?>
add_user.php 中的代码首先执行一个查询以找到 id 的最大值。然后文件以 id 值加 1 运行一个 insert 语句。该代码在负载很重的服务器上会在竞态条件中失败。另外,它也效率低下。
那么替代方案是什么呢?使用 mysql 中的自动增量特性来自动地为每个插入创建惟一的 id。更新后的模式如下所示。
清单 5. goodid.php
drop table if exists users;create table users ( id mediumint not null auto_increment, login text not null, password text not null, primary key( id ));
insert into users values ( null, jack, pass );insert into users values ( null, joan, pass );insert into users values ( null, jane, pass );
我们添加了 not null 标志来指示字段必须不能为空。我们还添加了 auto_increment 标志来指示字段是自动增量的,添加 primary key 标志来指示那个字段是一个 id。这些更改加快了速度。清单 6 展示了更新后的 php 代码,即将用户插入表中。
清单 6. add_user_good.php
<?phprequire_once(“db.php”);
function add_user( $name, $pass ){ $dsn = mysql://root:password@localhost/good_genid; $db =& db::connect( $dsn, array() ); if (pear::iserror($db)) { die($db->getmessage()); }
$sth = $db->prepare( “insert into users values(null,?,?)” ); $db->execute( $sth, array( $name, $pass ) );
$res = $db->query( “select last_insert_id()” ); $id = null; while( $res->fetchinto( $row ) ) { $id = $row[0]; }
return $id;}
$id = add_user( jerry, pass );
var_dump( $id );?>
现在我不是获得最大的 id 值,而是直接使用 insert 语句来插入数据,然后使用 select 语句来检索最后插入的记录的 id。该代码比最初的版本及其相关模式要简单得多,且效率更高。
问题 3:使用多个数据库
偶尔,我们会看到一个应用程序中,每个表都在一个单独的数据库中。在非常大的数据库中这样做是合理的,但是对于一般的应用程序,则不需要这种级别的分割。此外,不能跨数据库执行关系查询,这会影响使用关系数据库的整体思想,更不用说跨多个数据库管理表会更困难了。 那么,多个数据库应该是什么样的呢?首先,您需要一些数据。清单 7 展示了分成 4 个文件的这样的数据。
清单 7. 数据库文件
files.sql:create table files ( id mediumint, user_id mediumint, name text, path text);
load_files.sql:insert into files values ( 1, 1, test1.jpg, files/test1.jpg );insert into files values ( 2, 1, test2.jpg, files/test2.jpg );
users.sql:drop table if exists users;create table users ( id mediumint, login text, password text);
load_users.sql:insert into users values ( 1, jack, pass );insert into users values ( 2, jon, pass );
在这些文件的多数据库版本中,您应该将 sql 语句加载到一个数据库中,然后将 users sql 语句加载到另一个数据库中。用于在数据库中查询与某个特定用户相关联的文件的 php 代码如下所示。
清单 8. getfiles.php
<?phprequire_once(“db.php”);
function get_user( $name ){ $dsn = mysql://root:password@localhost/bad_multi1; $db =& db::connect( $dsn, array() ); if (pear::iserror($db)) { die($db->getmessage()); }
$res = $db->query( “select id from users where login=?”,array( $name ) ); $uid = null; while( $res->fetchinto( $row ) ) { $uid = $row[0]; }
return $uid;}
function get_files( $name ){ $uid = get_user( $name );
$rows = array();
$dsn = mysql://root:password@localhost/bad_multi2; $db =& db::connect( $dsn, array() ); if (pear::iserror($db)) { die($db->getmessage()); }
$res = $db->query( “select * from files where user_,array( $uid ) ); while( $res->fetchinto( $row ) ) { $rows[] = $row; } return $rows;}
$files = get_files( jack );
var_dump( $files );?>
get_user 函数连接到包含用户表的数据库并检索给定用户的 id。get_files 函数连接到文件表并检索与给定用户相关联的文件行。
做所有这些事情的一个更好办法是将数据加载到一个数据库中,然后执行查询,比如下面的查询。
清单 9. getfiles_good.php
<?phprequire_once(“db.php”);
function get_files( $name ){ $rows = array();
$dsn = mysql://root:password@localhost/good_multi;
http://www.bkjia.com/phpjc/508372.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/508372.htmltecharticle揭露 php 应用程序中出现的五个常见数据库问题 —— 包括数据库模式设计、数据库访问和使用数据库的业务逻辑代码 —— 以及它们的解决…