Home >Backend Development >PHP Tutorial >新手,刚学tp,请问一下tp3.2.3支持DB2数据库的吗

新手,刚学tp,请问一下tp3.2.3支持DB2数据库的吗

WBOY
WBOYOriginal
2016-06-20 12:35:541128browse

刚学tp,使用的时候看了看thinkphp 的开发手册,说目前的数据库包括Mysql、SqlServer、PgSQL、Sqlite、Oracle、Ibase、Mongo,也包括对PDO的支持,没有包含DB2,请问如果我要连接DB2数据库,应该怎么做呢?


回复讨论(解决方案)

使用PDO支持

$sql = "SELECT * FROM DB2ADMIN.USERS where username='$username'";    $result = db2_exec($conn, $sql);if($row = db2_fetch_array($result))    {        echo $row[1];  //使用$row["password"]    }  db2_close($conn);           }else {  echo "Connection failed.";}

使用 PDO,就可以了,很多都支持。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn