Jump To …

defaults.js

Author: H.Ristau

configuration object for the tds modul

module.exports = {

    ConnectionString : {
      

database server


      Server:'yourServer',

      

database user's name


      Login: 'yourUser',
      

name of database to connect


      Database: 'yourDatabase',
      

database user's password


      Password: 'yourPassword',
      

database port


      Port: 1433,
      

socket-connection timeout


      Timeout:10000
    },

    

number of connections to use in connection pool 0 will disable connection pooling


    poolSize: 0,
    

duration of node-pool timeout


    poolIdleTimeout: 30000000,
    

port on that the tds server is listen


    tdsServerPort: 8888
  }