A Twitch.tv viewer reward and games system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
454 B

var Connection = require('./lib/Connection');
var ConnectionConfig = require('./lib/ConnectionConfig');
var Types = require('./lib/protocol/constants/types');
var SqlString = require('./lib/protocol/SqlString');
exports.createConnection = function(config) {
return new Connection({config: new ConnectionConfig(config)});
};
exports.Types = Types;
exports.escape = SqlString.escape;
exports.escapeId = SqlString.escapeId;