sql-test.js 565 B

1234567891011121314151617181920212223242526
  1. const pgp = require('pg-promise')();
  2. // 连接到数据库
  3. const db = pgp({
  4. user: 'web3',
  5. password: '666',
  6. host: 'web2023.fmode.cn',
  7. port: 25432,
  8. database: 'dev'
  9. });
  10. // 执行SELECT语句并返回结果的函数
  11. async function main() {
  12. try {
  13. // 查询:数据库版本信息
  14. const data = await db.any('SELECT version();');
  15. console.log(data)
  16. return data;
  17. } catch (error) {
  18. console.error('Error executing SELECT query:', error);
  19. return null;
  20. }
  21. }
  22. // 调用函数并处理结果
  23. main()