标签: jquery ajax postgresql
在php中我可以连接到我的Postgres服务器并查询它:
<?php $string="host=localhost port=5432 user=me dbname=mydb"; $conn=pg_connect($string); $x=pg_query($conn," SELECT * FROM users;"); ?>
在.aspx文件中是否有类似的方法?