Home >Backend Development >PHP Tutorial >adodb.recordset PHP simple example of using ADODB through COM
To implement the following functionality, make sure the com.allow_dcom option in php.ini is set to true.
1. Preparation
Create a new ACCESS database and name it db.mdb, then create a new table comtest in this database, containing two fields: id and title, and finally insert some data.
2. Implementation code
// It is the newly built database
$db = 'd:\wwwroot\db.mdb';
// Establish a connection and open
$conn = new COM('ADODB .Connection') or die('can not start Active X Data Objects');
//$conn->Open("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=$db");
$conn ->Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=$db");
// Execute query and output data
$rs = $conn->Execute('SELECT * FROM comtest ');
?>
ID | Title |
---|---|
'. $rs->Fields['id']->Value .'< ;/td>'; echo ' | '. $rs->Fields['title']->Value .' | ';
The above introduces a simple example of adodb.recordset PHP using ADODB through COM, including the content of adodb.recordset. I hope it will be helpful to friends who are interested in PHP tutorials.