我正在使用node-mssql将nodejs连接到sql服务器。
我正在使用:
import * as sql from 'mssql';
let pool = await new sql.ConnectionPool(connectionString).connect();
获取池化的连接对象。
这工作正常,但是现在我还需要连接到azure sql服务器,并且需要如本示例中所建议的那样将crypto选项设置为true:
import * as sql from 'mssql';
const config = {
user: '...',
password: '...',
server: '...',
database: '...',
options: {
encrypt: true // Use this if you're on Windows Azure
}
}
let pool = await new sql.ConnectionPool(config).connect();
但是我需要将连接字符串作为一个整体保存...
反正有没有发送连接字符串并指定我希望加密选项为真?