php 连接并查询sql server数据库的简单示例

前端之家收集整理的这篇文章主要介绍了php 连接并查询sql server数据库的简单示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP连接sql server数据库查询,感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编来看看吧。
经测试代码如下:

/**
 * 连接并查询sql server数据库
 *
 * @param 
 * @arrange (512.笔记) jb51.cc
 **/
 
// Connect to the database (host,username,password)
$con = mssql_connect('localhost','admin','foo') 
    or die('Could not connect to the server!');
 
// Select a database:
mssql_select_db('Northwind') 
    or die('Could not select a database.');
 
// Example query: (TOP 10 equal LIMIT 0,10 in MysqL)
$sql = "SELECT TOP 10 * FROM ExampleTable ORDER BY ID ASC";
 
// Execute query:
$result = mssql_query($sql) 
    or die('A error occured: ' . MysqL_error());
 
// Get result count:
$Count = mssql_num_rows($result);
print "Showing $count rows:<hr/>\n\n";
 
// Fetch rows:
while ($Row = mssql_fetch_assoc($result)) {
 
    print $Row['Fieldname'] . "\n";
 
}
 
mssql_close($con);


/***   来自编程之家 jb51.cc(jb51.cc)   ***/
原文链接:https://www.f2er.com/php/528936.html

猜你在找的PHP相关文章