We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b129bc1 commit 9462912Copy full SHA for 9462912
index.js
@@ -2,11 +2,13 @@ var Connection = require('./lib/Connection');
2
var ConnectionConfig = require('./lib/ConnectionConfig');
3
var Types = require('./lib/protocol/constants/types');
4
var SqlString = require('./lib/protocol/SqlString');
5
+var Query = require('./lib/protocol/sequences/Query');
6
7
exports.createConnection = function(config) {
8
return new Connection({config: new ConnectionConfig(config)});
9
};
10
11
exports.Types = Types;
12
+exports.Query = Query;
13
exports.escape = SqlString.escape;
14
exports.escapeId = SqlString.escapeId;
0 commit comments