@overseers/tch
Version:
Tedious Connection Handler
36 lines • 1.25 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TediousStates = exports.Connection = exports.Request = exports.types = void 0;
const tedious_1 = require("tedious");
var tedious_2 = require("tedious");
Object.defineProperty(exports, "TYPES", { enumerable: true, get: function () { return tedious_2.TYPES; } });
exports.types = tedious_1.TYPES;
;
;
class Request extends tedious_1.Request {
}
exports.Request = Request;
;
;
class Connection extends tedious_1.Connection {
}
exports.Connection = Connection;
;
;
exports.TediousStates = {
INITIALIZED: 'Initialized',
CONNECTING: 'Connecting',
SENT_PRELOGIN: 'SentPrelogin',
REROUTING: 'ReRouting',
TRANSIENT_FAILURE_RETRY: 'TRANSIENT_FAILURE_RETRY',
SENT_TLSSSLNEGOTIATION: 'SentTLSSSLNegotiation',
SENT_LOGIN7_WITH_STANDARD_LOGIN: 'SentLogin7WithStandardLogin',
SENT_LOGIN7_WITH_NTLM: 'SentLogin7WithNTLMLogin',
SENT_LOGIN7_WITH_FEDAUTH: 'SentLogin7Withfedauth',
LOGGED_IN_SENDING_INITIAL_SQL: 'LoggedInSendingInitialSql',
LOGGED_IN: 'LoggedIn',
SENT_CLIENT_REQUEST: 'SentClientRequest',
SENT_ATTENTION: 'SentAttention',
FINAL: 'Final'
};
//# sourceMappingURL=types.js.map