PATH:
usr
/
local
/
lib
/
node_modules
/
knex-migrator
/
node_modules
/
knex
/
src
/
dialects
/
mysql2
// MySQL2 Client // ------- import inherits from 'inherits'; import Client_MySQL from '../mysql'; import { assign } from 'lodash'; import Transaction from './transaction'; // Always initialize with the "QueryBuilder" and "QueryCompiler" // objects, which extend the base 'lib/query/builder' and // 'lib/query/compiler', respectively. function Client_MySQL2(config) { Client_MySQL.call(this, config); } inherits(Client_MySQL2, Client_MySQL); assign(Client_MySQL2.prototype, { // The "dialect", for reference elsewhere. driverName: 'mysql2', transaction() { return new Transaction(this, ...arguments); }, _driver() { return require('mysql2'); }, validateConnection(connection) { if (connection._fatalError) { return false; } return true; }, }); export default Client_MySQL2;
[+]
..
[-] index.js
[edit]
[-] transaction.js
[edit]