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

12 years ago
  1. 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. exports.createConnection = function(config) {
  6. return new Connection({config: new ConnectionConfig(config)});
  7. };
  8. exports.Types = Types;
  9. exports.escape = SqlString.escape;
  10. exports.escapeId = SqlString.escapeId;