| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
12年前发布

Zebra_Database - 操作MySQL数据库的PHP封装

Zebra_Database 是一个高级的、紧凑的(只包含单个文件)、轻量级的、面向对象的 MySQL 数据库访问封装器,基于 PHP 的  MySQL 扩展开发。提供了各种用于与 MySQL 数据库交互的直观方法,比 PHP 自带的更有趣。

Zebra_Database - 操作MySQL数据库的PHP封装

示例代码:

 debug = true;    $db->connect('host', 'username', 'password', 'database');    // code goes here    // this should always be present at the end of your scripts;  // whether it should output anything should be controlled by the $debug property  $db->show_debug_console();  // $criteria will be escaped and enclosed in grave accents, and will  // replace the corresponding ? (question mark) automatically  $db->select(      'column1, column2',      'table',      'criteria = ?',      array($criteria)  );    // after this, one of the "fetch" methods can be run:    // to fetch all records to one associative array  $records = $db->fetch_assoc_all();    // or fetch records one by one, as associative arrays  while ($row = $db->fetch_assoc()) {      // do stuff  }    $db->insert(      'table',      array(          'column1' => $value1,          'column2' => $value2,      )  );  ?>

项目主页:http://www.open-open.com/lib/view/home/1358732852645

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1358732852645.html
MySQL 持久层框架