PHP数据库操作类 - ezSQL 07 August 2010 10:57 Saturday by 小屋 浏览(2450)

ezSQL 下载地址:http://sjolzy.cn/php/ezSQL/bak/ez_sql_2.05.zip

新 版本是2.05添加了很多支持,包括 CodeIgniter,MSSQL, PDO等等。

查看示例:

Example 1
----------------------------------------------------

// Select multiple records from the database and print them out..
$users = $db->get_results("SELECT name, email FROM users");
foreach ( $users as $user ) {
            // Access data using object syntax
            echo $user->name;
            echo $user->email;
}

Example 2

阅读全文>>