Merge 6dbbbc6704
into 50bf36300e
This commit is contained in:
commit
6fedbcebe5
17
lib/sql.js
17
lib/sql.js
|
@ -2143,3 +2143,20 @@ SQLConnector.prototype.setNullableProperty = function(property) {
|
|||
throw new Error(g.f('{{setNullableProperty}} must be implemented by' +
|
||||
'the connector'));
|
||||
};
|
||||
|
||||
/**
|
||||
* Discover if database is in strict mode
|
||||
* @param {Function} [cb] The callback function
|
||||
*/
|
||||
SQLConnector.prototype.discoverIsStrict = function(cb) {
|
||||
const self = this;
|
||||
const sql = self.buildQueryIsStrict();
|
||||
this.execute(sql, cb);
|
||||
};
|
||||
|
||||
/**
|
||||
* Build sql for checking if database is in strict mode
|
||||
*/
|
||||
SQLConnector.prototype.buildQueryIsStrict = function() {
|
||||
throw new Error(g.f('{{isStrict}} must be implemented by the connector'));
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue