knex/lib/index.js

49 lines
1.5 KiB
JavaScript
Raw Normal View History

'use strict';
var Raw = require('./raw')
var warn = require('./helpers').warn
var Client = require('./client')
var makeClient = require('./util/make-client')
var makeKnex = require('./util/make-knex')
var parseConnection = require('./util/parse-connection')
var assign = require('lodash/object/assign')
2015-04-24 15:34:55 -04:00
if (process.browser) {
require('./dialects/websql/index.js')
}
function Knex(config) {
if (typeof config === 'string') {
return new Knex(assign(parseConnection(config), arguments[2]))
}
var Dialect;
if (arguments.length === 0 || (!config.client && !config.dialect)) {
Dialect = makeClient(Client)
} else {
var clientName = config.client || config.dialect
2015-04-22 14:53:31 -04:00
Dialect = makeClient(require('./dialects/' + (aliases[clientName] || clientName) + '/index.js'))
}
return makeKnex(new Dialect(config))
}
// Run a "raw" query, though we can't do anything with it other than put
// it in a query statement.
Knex.raw = function(sql, bindings) {
return new Raw({}).set(sql, bindings)
}
// Create a new "knex" instance with the appropriate configured client.
Knex.initialize = function(config) {
warn('knex.initialize is deprecated, pass your config object directly to the knex module')
return new Knex(config)
}
// The client names we'll allow in the `{name: lib}` pairing.
var aliases = {
'mariadb' : 'maria',
'mariasql' : 'maria',
'pg' : 'postgres',
'sqlite' : 'sqlite3'
};
2015-04-24 15:34:55 -04:00
module.exports = Knex