在Windows版的PHP中使用ADO

2016-01-29 14:52 35 1 收藏

在Windows版的PHP中使用ADO,在Windows版的PHP中使用ADO

【 tulaoshi.com - PHP 】

  这个例子建了一个连接,用ODBC打开Access的数据库NorthWind(安装Access时带的示范)。在执行了SQL语句后,返回了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();  
?  

来源:http://www.tulaoshi.com/n/20160129/1494536.html

延伸阅读
标签: PHP
  在windows平台上使用php+xslt 1。到http://www.php.net下载php 4.0.6 2。将php-4.0.6-Win32.zip解压到c:\php下 3。在web server上配置好php 3。拷贝dlls目录下的下列四个文件到windows\system(32)下 expat.dll sablot.dll xmlparser.dll xmltok.dll 4。修改php.ini 修改extension_dir指向正确的extension目录 extension_dir ...
标签: PHP
我想做一个随机的出现的网页,可是用rand()就是不行,听说要初始化随机数,可是怎么初始化,请不吝赐教,谢谢! //第一步:初始化种子 $seedarray =microtime(); $seedstr =split(" ",$seedarray,5); $seed =$seedstr[0]*10000; //第二步:使用种子初始化随机数发生器 srand($seed); //第三步:生成指定范围内...
标签: ASP
  如何在VC++ 编写的组件中使用 ADO 简介 这篇文章是给那些习惯于用VB开发组件的人想转用VC++时看的。本文用一个简单的例子示范如何使用ADO Recordset 对象。 在VB中,当你想要返回一个ADO Recordset,你会这样写… Function GetRecordset() As Object      Dim cn As ADODB.Connection    &nbs...
标签: ASP
  Overview A wise programmer once said, "The one constant in computing is change." There couldn't be a truer statement. This article is about such change, specifically moving from HTML to the next generation, XHTML (Extensible Hypertext Markup Language). This article includes the following sections...
标签: PHP
//向DOM中写入新数据   $item = $dom-createElement("item");   $title = $dom-createElement("title");   $titleText = $dom-createTextNode("title text");   $title-appendChild($titleText);   $item-appendChild($title);  &nb...

经验教程

790

收藏

30
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部