Zebra_Database PHP的MySQL扩展

程序名称:Zebra_Database

授权协议: LGPL

操作系统: 跨平台

开发语言: PHP

Zebra_Database 介绍

Zebra_Database 是一个高级的、紧缩的(只包含单个文件)、轻量级的、面向对象的 MysqL 数据库访问封装器,基于 PHPMysqL
扩展开发。提供了各种用于与 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,
    )
);
?>

Zebra_Database 官网

http://stefangabos.ro/php-libraries/zebra-database/

相关编程语言

BlazeDS 是一个基于服务器的Java 远程控制(remoting...
OVal 是一个可扩展的Java对象数据验证框架,验证的规...
Volta 是一套开发工具,专为开发分布式、实时系统应...
OpenDDS 是一个开源的 C++ 实现的 对象管理组织 OMG...
JADE (Java Agent DEvelopment Framework) 是一个完...
FastMM ,在D2006和2007中已代替了原来的内存管理器。