sails.js
PostgreSQL-database-adapter voor zeilen
Zoeken…
Installeren
U kunt de postgreSQL-adapter installeren via NPM.
npm install sails-postgresql
Configuratie
U kunt de database-instellingen config/connections.js
in config/connections.js
.
Hier is een voorbeeld:
postgresql: {
database: 'databaseName',
host: 'localhost',
user: 'root',
password: '',
port: 5432,
poolSize: 10,
ssl: false
};
Als alternatief kunt u de verbindingsinformatie in URL-indeling opgeven:
postgresql: {
url: 'postgres://username:password@hostname:port/database',
ssl: false
};
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow