25 lines
583 B
JavaScript
25 lines
583 B
JavaScript
const { Client } = require('pg');
|
|
|
|
async function check() {
|
|
const client = new Client({
|
|
host: '87.106.21.21',
|
|
port: 5432,
|
|
user: 'enwelo_admin',
|
|
password: 'WX1t1cgP1qK09',
|
|
database: 'enwelo'
|
|
});
|
|
|
|
try {
|
|
await client.connect();
|
|
const res = await client.query(`
|
|
SELECT * FROM geodaten.flaecheneigentuemer_alkis LIMIT 5;
|
|
`);
|
|
console.log(JSON.stringify(res.rows, null, 2));
|
|
} catch (e) {
|
|
console.error("Error:", e);
|
|
} finally {
|
|
await client.end();
|
|
}
|
|
}
|
|
check();
|