我正在尝试测试我的psql数据库。我正在使用node.js将dato显示到HTML页面中。我有后续数据并显示在终端中,但实际上我不知道在HTML页面中执行相同的操作是什么。
有人可以指路吗?
答案 0 :(得分:0)
psql
不是“数据库”,而是 is a terminal-based front-end to PostgreSQL。如果您决定使用它来生成HTML页面,最好的方法是使用html格式运行它:
t=# \pset format h
Output format is html.
t=# \o /tmp/so14.html
t=# select * from so14;
t=# \o
以上将产生这样的内容:
<table border="1">
<tr>
<th align="center">i</th>
</tr>
<tr valign="top">
<td align="right">1</td>
</tr>
<tr valign="top">
<td align="right">2</td>
</tr>
<tr valign="top">
<td align="right">3</td>
</tr>
</table>
<p>(3 rows)<br />
</p>