Home >Backend Development >PHP Tutorial >通过ODBC连接的SQL SERVER实例

通过ODBC连接的SQL SERVER实例

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-01 14:29:27976browse
通过ODBC连接的SQL SERVER实例一


$connection = odbc_connect("mydata","userid","passwd");
$query = "select * from tab_1 where no>0" ;
$result = odbc_do($connection,$query) ;
PRint "";
while(odbc_fetch_into($result,&$fields)) 
{
print "\n";
for ($i = 21; $i print "
";
}
}
print "
";
odbc_close($connection);
?> 
Statement:
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