PDO的三种数据库连接方式
时间:2021-07-01 10:21:17
帮助过:5人阅读
- <strong><span style="font-size:18px;"><?php
- header(‘Content-Type:text/html;charset=utf-8‘);
- function show_bug($msg){
- echo ‘<pre>‘;
- print_r($msg);
- echo ‘</pre>‘;
- }
- ?></span></strong>
1.pdo通过参数形式链接数据库
[html] view plain
copy
- <strong><span style="font-size:18px;">include_once "base.php";
- try{
- //$dsn是数据源
- $dsn=‘mysql:host=localhost;dbname=imooc‘;
- $username=‘root‘;
- $passwd=‘‘;
- $pdo=new PDO($dsn,$username,$passwd);
- //如果连接成功的话,得到的是pdo的对象
- show_bug($pdo);
- }catch(PDOException $e){
- echo $e->getMessage();
- }</span></strong>
2.pdo通过uri形式连接数据库
新建一个dsn.txt文件,里面内容是:
[php] view plain
copy
- <strong><span style="font-size:18px;"><?php
- include_once "base.php";
- try{
- $dsn=‘uri:file://D:\wamp\www\muke\pdo\dsn.txt‘;
- $username=‘root‘;
- $passwd=‘‘;
- $pdo=new PDO($dsn,$username,$passwd);
- show_bug($pdo);
- }catch(PDOException $e){
- echo $e->getMessage();
- }
- ?></span></strong>
3.pdo通过配置文件形式连接数据库
[php] view plain
copy
- <strong><span style="font-size:18px;"><?php
- include_once "base.php";
- try{
- $dsn=‘imooc‘;
- $username=‘root‘;
- $passwd=‘‘;
- $pdo=new PDO($dsn,$username,$passwd);
- show_bug($pdo);
- }catch(PDOException $e){
- echo $e->getMessage();
- }
- ?></span></strong>
以上三种,建议使用第一种,通过参数形式链接数据库的
PDO的三种数据库连接方式
标签:sso 数据源 bar class 使用 clu root http 配置