MySQL Promise Extension
This module decorates the objects: connection and pool, from the mysql module, with more functionality and support to ES6 promises. It was written with the goal to define queries and transactions with less effort.
Installation
It's available through the NPM package:
npm install --save mysql
npm install --save mysql-promise-extension
Usage
This module exports two factory functions. One for connections: createConnection(options)
, and another for the pool: pool(options)
. The options are the same as the options from the mysql module.
connection
The connection object returned by the factory function createConnection(options)
is the same as the connection object from the mysql module, but with the extended functionality provided by this module. So, you have access to all original properties and functions from the mysql module in the case you need it.
The extended functions provided are:
connectP()
: Wrap function for connection.connect()
endP()
: Wrap function for connection.end()
queryP(query)
: Wrap function for connection.query(query)
beginTransactionP()
: Wrap function for connection.beginTransaction()
commitTransactionP()
: Wrap function for connection.commit()
rollbackP()
: Wrap function for connection.rollback()
execute(query)
executeTransaction(queryFunctions)
Where the functions with suffix "P" are functions that return Promise.
The last two functions: execute
and executeTransaction
, provide a simple form to make queries with less verbose code like establish and terminate connections, and handle the transactions commit/rollback.
The query object is the same as the used in the mysql module.
Examples
(all the examples use the async/await syntax)
First of all, lets see how the execute
and executeTransaction
are used:
const createConnection = require('mysql-promise-extension').createConnection
const options = { ... }
const getHobbiesAndUsers = (async () => {
const queryHobbies = 'select name from HOBBY'
const queryUsers = 'select name from USER'
const [hobbies, users] = await createConnection(options).execute([queryHobbies, queryUsers])
console.log(hobbies, users)
})
const getHobbiesFromUser = (async () => {
const queryHobbies = {
sql: 'select hobby_name as name from USER_HOBBY where user_id=?',
values: [1]
}
const hobbies = await createConnection(options).execute(queryHobbies)
console.log(hobbies)
})
const createUserAndHobby = (async () => {
const queryCreateUser = () => ({
sql: 'insert into USER (name) values(?);',
values: ['bob']
})
const queryCreateAssociationWithHobby = previousQueryResult => ({
sql: 'insert into USER_HOBBY (user_id, hobby_name) values(?,?);',
values: [previousQueryResult.insertId, 'soccer']
})
const result = await createConnection(options).executeTransaction([queryCreateUser, queryCreateAssociationWithHobby])
console.log(result.affectedRows)
})
With the execute
function, we only need to define the queries to pass as a argument and can be more than one.
The executeTransaction
function is slightly different. As we can see, it receives an array of functions. Those functions can receive one argument, which is the result of the previous query. It's useful for cases where we need the result of the previous query. The functions return a query object identical to the object used in the execute
function.
The executeTransaction
uses the waterfall implementation approach to preserve the sequential order.
Now, lets see with the wrapper functions:
const createConnection = require('mysql-promise-extension').createConnection
const options = { ... }
const getHobbiesAndUsers = (async () => {
const connection = createConnection(options)
await connection.connectP()
const [hobbies, users] = await Promise.all([connection.queryP('select name from HOBBY'), connection.queryP('select name from USER')])
await connection.end()
console.log(hobbies, users)
})
const getHobbiesFromUser = (async () => {
const connection = createConnection(options)
await connection.connectP()
const hobbies = await connection.queryP('select hobby_name as name from USER_HOBBY where user_id=1')
await connection.end()
console.log(hobbies)
})
const createUserAndHobby = (async () => {
const connection = createConnection(options)
await connection.connectP()
try {
await connection.beginTransactionP()
const createUser = await connection.queryP({
sql: 'insert into USER (name) values(?);',
values: ['bob']
})
const createHobby = await connection.queryP({
sql: 'insert into USER_HOBBY (user_id, hobby_name) values(?,?);',
values: [createUser.insertId, 'soccer']
})
await connection.commitTransactionP()
console.log(createHoby.affectedRows)
}
catch(err) {
await connection.rollbackP()
}
finally {
await connection.endP()
}
})
pool
// TODO
Bugs/Requests
GitHub issues
Todo List:
- Create the proper documentation.
- Able to extend the PoolCluster functionality.