CI 運算元據庫

2021-08-07 08:54:37 字數 948 閱讀 6804

//$this->load->database();//可以設定裝載那個資料庫

//首先需要載入資料庫物件。

//$this->db;//裝載到這裡。

$res=$this->db->query($sql); //執行sql語句

$list=$res->result();//返回物件

$list=$res->result_array();//返回陣列,內容是關聯陣列

$list=$res->row();//返回第一條資料,直接就是乙個物件

$data['user_list']=$list;

$this->load->view('user/showusers',$data);

配置檔案接收引數

$data[0]=$this->input->post('username');

$data[1]=$this->input->post('password');

$sql='insert into swap_user (username,password) values(?,md5(?))';

$bool=$this->db->query($sql,$data);

if($bool)

ci中的超級物件

$this->load->vars();

$this->load->view();

//ci中的uri屬性

獲得值:$_get['i'];

//從入空檔案開始,控制器算第乙個位置,依次類推。

運算元據庫

python importmysqldb defmydbtest conn mysqldb.connect host localhost user root passwd sa db b4img charset utf8 cursor conn.cursor sql select from imag...

運算元據庫

2.localhost 的位址 檢視 一般位於c windows system32 driver etc下,一般在最後有這麼一行 127.0.0.1 localhost 資料庫操作方法 鏈結資料庫 建立資料庫表 資料庫插入操作 資料庫查詢操作 後記 try 使用 fetchone 方法獲取一條資料 ...

運算元據庫

是選擇乙個 是可選引數 新建資料庫 create if not exists db name default character set charset name 檢視當前伺服器下的資料庫列表 show like pattern where expr 檢視警告資訊 show warnings 修改資...