文件名称:thinkphp Db2驱动
文件大小:6KB
文件格式:RAR
更新时间:2017-02-04 11:08:58
thinkphp Db2
实现基本功能。分页不支持。 数据库连接配置参数,修改config.php文件 'DB_TYPE' => 'Db2', 'DB_HOST' => '100.70.1.47', //DB2 IP地址 'DB_NAME' => 'dispen', 'DB_USER' => 'db2ins', 'DB_PWD' => 'db2in', 'DB_PORT' => '50000', 复制代码 DbDb2.class.php文件放在:ThinkPHP\Extend\Driver\Db目录下。 对于分页操作: $User = M(); $xlist=$User->query("select tempc007.*, rownumber() over (order by SEACODE asc) as rowid from tempc007 where rowid>=开始号 and rowid <=结束号"); 复制代码 其他如正常操作。
【文件预览】:
config.php
DbDb2.class.php
IndexAction.class.php