edge-sql.js ¿cómo configurar connectionString?

var edge = require('edge');

var getProduct = edge.func('sql', function () {/*
    select * from Products 
    where ProductId = @myProductId
*/});

getProduct({ myProductId: 10 }, function (error, result) {
    if (error) throw error;
    console.log(result);
});

Este Código funciona bien, pero me siento incómodo al establecer la ConnectionString como ENVIROMENT_VARIALBE.

set EDGE_SQL_CONNECTION_STRING=Data Source=localhost;Initial Catalog=Northwind;Integrated Security=True

¡Pero no puedo encontrar una manera diferente de hacer esto! Incluso enGitHub ¡No puedo encontrar otra manera de establecer ConnectionString! Así que me pregunto si es posible en OOB edge-sql.js configurar el ConnectionString en el código.

Respuestas a la pregunta(2)

Su respuesta a la pregunta