Skip to content

Commit 9462912

Browse files
committed
export Query constructor
1 parent b129bc1 commit 9462912

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@ var Connection = require('./lib/Connection');
22
var ConnectionConfig = require('./lib/ConnectionConfig');
33
var Types = require('./lib/protocol/constants/types');
44
var SqlString = require('./lib/protocol/SqlString');
5+
var Query = require('./lib/protocol/sequences/Query');
56

67
exports.createConnection = function(config) {
78
return new Connection({config: new ConnectionConfig(config)});
89
};
910

1011
exports.Types = Types;
12+
exports.Query = Query;
1113
exports.escape = SqlString.escape;
1214
exports.escapeId = SqlString.escapeId;

0 commit comments

Comments
 (0)