PHP如何應(yīng)用odbc技巧,很多新手對此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
成都創(chuàng)新互聯(lián)專注于企業(yè)全網(wǎng)營銷推廣、網(wǎng)站重做改版、融安網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、HTML5建站、商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為融安等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
當(dāng)我們在應(yīng)用PHP語言對ACCESS數(shù)據(jù)庫操作時(shí),通常都會用到PHP中的odbc。下面我們就來具體認(rèn)識一下PHP應(yīng)用odbc是如何操作ACCESS數(shù)據(jù)庫的。
PHP應(yīng)用odbc具體代碼:
class odbc_db
{
var $con = null;
var $resource = null;
function __construct()
{
}
function connect($dsn = ” ,
$user = ” , $passwd = ” ,
$cursor_type = 0)
{
!$dsn && $this->debug(’dsn not provided!’);
$this->con = odbc_connect($dsn ,$user
, $passwd ,$cursor_type);
!$this->con && $this->debug(’conncet failed!’);
return $this->con;
}
function query($sql = ”)
{
$this->resource = odbc_exec($this->con , $sql);
!$this->resource && $this->debug
(’query failed!’);
return $this->resource;
}
function fetch_array($resource = ”)
{
!$resource && $resource = $this->resource;
return odbc_fetch_array($resource);
}
function query_first($sql = ”)
{
$resource = $this->query($sql);
return odbc_fetch_array($resource);
}
function fetch_all($resource = ”)
{
!$resource && $resource = $this->resource;
$results = array();
while(false !== ($row = @odbc_fetch_
array($resource)))
{
$results[] = $row;
}
return $results;
}
function num_rows()
{
return odbc_num_rows($this->con);
}
function affected_rows()
{
return odbc_num_rows($this->con);
}
function debug($message = ”)
{
$message .= ‘
以下錯(cuò)誤信息由ODBC 提供:’. odbc_errormsg();
exit($message);
}
function __destruct()
{
odbc_close($this->con);
}
}
?>
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。