在Wordpress中,如何从外部Microsoft SQL数据库中提取数据以显示为只读表?
要明确的是,这不是关于如何将Wordpress转换为MS SQL的问题,而是如何从主Wordpress DB外部的源提取特定窗口小部件的数据。我需要从中获取的数据恰好位于MS SQL数据库中。
为了举例,让我们说我需要拉出商店的位置和时间:
/* Retrieve store locations from the external MS SQL database*/
SELECT id, name, address, city, state, zip, phone, openingTime, closingTime
FROM locations
ORDER BY name
并将该数据显示在Wordpress页面上的表格中:
<table>
<tr>
<th>Store Name</th>
<th>Address</th>
<th>Store Hours</th>
</tr>
<!-- Display rows of store locations here -->
</table>
答案 0 :(得分:3)
Wordpress在PHP上运行,因此您需要为SQL Server使用PHP提供程序。请参阅Accessing SQL Server Databases with PHP。
如果您在Linux上托管Wordpress,则需要FreeTDS,请参阅PHP mssql Requirements。