error in uncompressing How to call Asscess database and COM program through ADO in PHP

WBOY
Release: 2016-07-29 08:34:39
Original
1106 people have browsed it

Author: John Lim.
Translation: znsoft(http://www.phpease.com znsoftm@21cn.com)
PHP4 already supports Microsoft's COM technology. However, there is very little mention in the COM part of the document.
Here are a few examples I’ve tried. Hope this gives you some idea. Note that these only run on 32-bit Microsoft Windows platforms.
Activate ADO with php
ADO is Microsoft's database object technology. ADO includes objects that connect to the database, recordset objects that return data from query statements, and field objects that represent data elements.
Many databases do not directly support ADO. Instead, many databases support two lower levels of Microsoft database technology: ODBC and OLEDB. Many databases support ODBC; but OLEDB has a reputation for being faster than ODBC.
ADO is an API that wraps ODBC and OLEDB.
This example opens a new ADO connection object, opens a traditional ACCESS database through ODBC, and then we execute the SQL query, which will return a recordset object. Then we display the first three fields of the recordset.
$dbc = new COM("ADODB.Connection");
$dbc->Provider = "MSDASQL";
$dbc->Open("nwind");
$rs = $dbc- >Execute("select * from products");
$i = 0;
while (!$rs->EOF) {
$i += 1;
$fld0 = $rs->Fields(0) ;
$fld1 = $rs->Fields(1);
$fld2 = $rs->Fields(2);
print "$fld0->value $fld1->value $fld2->value< ;BR>";
$rs->MoveNext();
}
$rs->Close();
?>
Calling Microsoft Word with PHP
Here is another example:
$ word=new COM("word.application") or die("Cannot start Microsoft Word");
print "Loaded word version ($word->Version)n";
$word->visible = 1;
$word->Documents->Add();
$word->Selection->Typetext("This is a test");
?>

The above introduces how to call the Asscess database and COM program through ADO in PHP, including the content of error in uncompressing. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!