連線資料庫讀取表單元素,這裡幫你解決

2021-09-01 14:55:35 字數 1304 閱讀 2498

一,設定時間區

date_default_timezone_set('prc');
設定中國時間

二,定義乙個物件,連線資料庫

$sqli = @new mysqli(string $host[,string $userneme [,string $pawd[,string $dbname[,int $port [,string $socket]]]]]]);

$username:連線資料庫的使用者名稱,預設值是伺服器的、程序所有者的使用者名稱

$pawd:連線資料庫的密碼,預設為空

$dbname:連線資料庫的名稱

$port :tcp埠

$socket:unix域

@遮蔽錯誤資訊

三,檢視是否連線成功

$if($sqli->connect_error){}

缺省會true,則連線失敗

找不到資料庫時返回null預設返回false

四,設定編碼格式

set_charset('utf8');

五,寫資料庫語句

e.g $sql = $sql = "select id,user,create_time from user";
六,向資料庫中插入sql語句

使用query();方法

$restul=query($sql);
mixed mysql::query(string $query)

返回值,失敗時返回false,通過mysqli_query()成功執行select,show,decribe或explain查詢會返回乙個mysqli_resultd(一般是陣列)物件

(其他查詢)成功返回true

七,讀取資料

field_count();讀取字段個數

num_rows();獲取記錄數

fetch_row(void);從結果集中得到一行記錄數,得到索引陣列,鍵名是數字

fetch_assoc(void);從結果集中得到一行記錄數,得到關聯陣列,鍵名是欄位名

fetch_array([int $resulttype=mysqloi_both]);得到索引陣列和關聯陣列混合

fetch_array(mysql_num);得到索引陣列

fetch_array(mysql_assoc);得到關聯陣列

八,釋放結果集

$result->free();
九,關閉資料庫

$sqli->close();

pymysql連線資料庫,讀取表內容

python中有mysqldb pymysql,psycopg2 連線postgresql 等資料庫模組,本文用pymysql模組連線mysql資料庫,並且讀取資料庫表 看過其他博文的介紹,把程式和資料庫比作兩個目的地,將游標比喻成運輸貨車 很是形象生動!匯入pymysql模組 import pym...

連線資料庫

2 documents 目錄就是我們可以用來寫入並儲存檔案得地方,一般可通過 nsarray paths nssearchpathfordirectoriesindomains nsdocumentdirectory,nsuserdomainmask,yes nsstring documentsdi...

連線資料庫

1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost 1521 orcl orcl為資料庫的sid strin...