import { OnInit } from '@angular/core';
import { Connection } from 'tedious';
const DBCONFIG = {
userName: 'myusr',
password: 'mypass',
server: 'myserver',
options: {
database: 'mydb',
tdsVersion: '7_1', // sql 2000
encrypt: false,
rowCollectionOnDone: true
}
};
export class DatabaseService implements OnInit {
ngOnInit() {
const DBconnection = new Connection(DBCONFIG);
}
}