(1)integer odbc_connect(string dsn, string user, string password)
連線到乙個odbc資料庫源名字上。
(2)integer odbc_exec(integer connection, string query)或 odbc_do(integer connection, string query)
在乙個連線www.cppcns.com上執行查詢。
(3)boolean odbc_fetch_row(integer result, integer row)
從乙個結果集中獲取一行資料。row引數是可選的,若為空缺,則返回下乙個有效行。在結果集中不再剩餘行時程式設計客棧返回false。
(4)boolean odbc_close(integer connection)
關閉乙個資料庫的連線。若在該連線上有開啟的事務,則返回乙個錯誤,而且連線不會被關閉。
最後,還是看個分頁的例子:
//設定每頁顯示條數
$show_num = 10;
$spages = $pages;//避免$pages後期被改變
//定義連線
$dsn = "localhost";
$user = "";
$password = "";
//計算總記錄數
$rs_num = "select count(*) as id from bbs where zu='0' and lei='".$lei."'";
$conn_id = odbc_connect($dsn,$user,$password);
$rnum = odbc_exec($conn_id,$rs_num);
while(odbc_fetch_row($rnum))
//計算與頁有關的條數
$nnn = $total_rs / $show_num;//計算總頁數
$hnnn = intval($nnn);//將總頁數取整
$cnnnn = $nnn - $hnnn;
//計算所需總頁數
switch ($cnnn);
if ($nnn == 0)$nnn++;
//計算頁面改變所需的條件
$fore = $pages;
$next = $pages;
$fore -= 1;
$next += 1;
if ($fore > 0) ;
if ($pages < $nnn) ;
echo "共".$nnn."頁";
$query_string = "select * from table where condition order b程式設計客棧y you wanted order";
$cur = odbc_www.cppcns.comexec($conn_id,$query_string);
//取到迴圈的頂部
$cnum = ($pages-1) * $show_num;//計算當前的記錄游標的位置
//空迴圈到顯示記錄游標處
if ($cnum != 0);
};$i=1;
//顯示記錄
while(odbc_fetch_row($cur));
$i++;
}; //關閉連線
odbc_close($conn_id);
?>
本文標題: php呼叫三種資料庫的方法(2)
本文位址:
PHP呼叫三種資料庫的方法 2
1 integer odbc connect string dsn,string user,string password 連線到乙個odbc資料庫源名字上。2 integer odbc exec integer connection,string query 或 odbc do integer c...
PHP呼叫三種資料庫的方法 1
1 integer mysql connect 主機,使用者名稱,口令 此函式開始乙個對指定主機上的mysql資料庫的連線。若該資料庫位於乙個不同地埠,則在主機名後加上冒號和埠號。所有引數均為可選的,預設情況下分別對應為本地主機 使用者正在執行的指令碼名和空。主機可以是ip位址或網域名稱。在指令碼執...
PHP呼叫三種資料庫的方法 3
1 integer ora logon string user string password 開始對乙個oracle資料庫伺服器的連線。2 integer ora open integer connection 開啟給出的連線的游標。3 integer ora do integer connect...