Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | 1x 1x 1x 1x 1x 1x 1x 1x 5x 5x 5x 1x 1x 1x 1x 1x 1x 1x | /**
* @author David Menger
*/
'use strict';
const mssql = require('mssql');
const { format } = require('sqlstring');
const path = require('path');
const Migrate = require('./Migrate');
const log = console;
const cp = new mssql.ConnectionPool({
user: 'SA',
password: 'NeotravujPotvoro1',
server: 'localhost',
port: 1433,
database: 'wingbotMssql',
options: {
encrypt: false
}
});
cp.on('error', (err) => {
log.error('MSSQL ERROR', err);
});
const pool = cp.connect()
.catch((e) => {
log.error(e);
setTimeout(() => process.exit(1), 400);
return cp;
});
async function queryWithoutMigration (string, ...args) {
const q = await pool;
const r = q.request();
return r.query(format(string, args));
}
const migrationsPath = path.resolve(__dirname, '..', '..', 'migrations');
const migrate = new Migrate(pool, migrationsPath);
async function poolWithMigration () {
const res = await pool;
await migrate.migrate();
return res;
}
const migratedPool = poolWithMigration()
.catch((e) => {
log.error(e);
setTimeout(() => process.exit(1), 400);
return cp;
});
module.exports = {
pool: migratedPool,
queryWithoutMigration
};
|