mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
37 lines
1.6 KiB
JavaScript
37 lines
1.6 KiB
JavaScript
//---------------------------------------------------------------------------------------------------------------------------------
|
|
// File: test-config.js
|
|
// Contents: configuration for tests
|
|
//
|
|
// Copyright Microsoft Corporation
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
//
|
|
// You may obtain a copy of the License at:
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//---------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
// server connection info
|
|
var driver = 'SQL Server Native Client 11.0';
|
|
var server = '(local)';
|
|
var user = '<user>';
|
|
var pwd = '<pwd>';
|
|
var database = 'test';
|
|
var useTrustedConnection = true;
|
|
var conn_str = "Driver={" + driver + "};Server=" + server + ";" + (useTrustedConnection == true ? "Trusted_Connection={Yes};" : "UID=" + user + ";PWD=" + pwd + ";") + "Database={" + database + "};";
|
|
|
|
// The following need to be exported for building connection strings within a test...
|
|
exports.server = server;
|
|
exports.user = user;
|
|
exports.pwd = pwd;
|
|
// Driver name needs to be exported for building expected error messages...
|
|
exports.driver = driver;
|
|
// Here's a complete connection string which can be shared by multiple tests...
|
|
exports.conn_str = conn_str;
|