tp5資料庫配置操作

2022-09-14 07:06:09 字數 1035 閱讀 6373

如何鏈結資料庫

有三種方式

// 資料庫型別

'type'            => 'mysql',

// 伺服器位址

'hostname'        => '127.0.0.1',

// 資料庫名

'database'        => 'ceshi',

// 使用者名稱

'username'        => 'root',

// 密碼

'password'        => '',

// 埠

'hostport'        => '',

2、方法配置

a、使用陣列

$db = db::connect([

// 資料庫型別

'type'            => 'mysql',

// 伺服器位址

'hostname'        => '127.0.0.1',

// 資料庫名

'database'        => 'ceshi',

// 使用者名稱

'username'        => 'root',

// 密碼

'password'        => '',

// 埠

'hostport'        => '',

b、使用字串的形式

$db = db::connect("mysqly:");

資料庫的基本使用

public function index(){       

//1、使用系統db類

$data = db::table('user')->s    elect();           

//2、使用sql語句

$data = db::query('select * from user');                       

操作方法

where和whereor查詢經常混合使用

資料的查詢:增刪改查及高階查詢詳見tp5手冊

tp5資料庫操作

查詢 db user where id 1 find db user where status 1 select 新增 新增單條資料db user insert data 新增多條資料db user insertall list 修改 更新資料表中的資料 db user where id 1 upd...

TP5 資料庫基本操作

插入資料 執行成功返回影響資料的條數,執行失敗返回false 新增一條資料 data name wangwu pwd 123456 res db user insert data 新增多條資料 data name ll pwd 1 name zz pwd 2 res db user insert d...

tp5 資料庫Db查詢操作

data db query select from tf action data db query select from tf action where id and id 1,10 sql db getlastsql 查詢用query。刪除,增加,修改,用execute。data db tabl...