sphinxql
Version:
SphinxQL query builder for Node.JS. Supports Sphinx search(2.x and 3.x) and Manticore search
13 lines • 435 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var BaseStatement = (function () {
function BaseStatement(connection) {
this.connection = connection;
}
BaseStatement.prototype.execute = function () {
return this.connection.execute(this.generate(), []);
};
return BaseStatement;
}());
exports.default = BaseStatement;
//# sourceMappingURL=BaseStatement.js.map