
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
mysql-generator
Advanced tools
A Library which to generate mysql statements.
npm install mysql-generator
const sqlHelper = require('mysql-generator');
##Examples
select
const sqlHelper = require('mysql-generator');
let selectSql = sqlHelper
.Select
.from('user', 'u')
.leftJoin('company', 'c', 'u.companyId = c.id')
.field('u.name')
.field('c.name', 'companyName')
.where('u.id = ?', 22)
.toString();
console.log(selectSql);
//SELECT u.name, c.name AS companyName FROM `user` AS u LEFT JOIN `company` AS c ON u.companyId = c.id WHERE u.id = 22;
update
let updateSql = sqlHelper
.Update
.table('user')
.set('password', 'abcd')
.setFields({
name: 'kyo'
})
.useFunction('password', 'MD5')
.where('id IN (?)', [1, 2, 3])
.toString();
console.log(updateSql);
//UPDATE `user` SET password = MD5('abcd'), name = 'kyo' WHERE id IN (1, 2, 3);
insert
let insertSql = sqlHelper
.Insert
.into('user')
.set('name', 'kyo')
.setFieldsRow({
sex: 1,
age: 20,
email: 'some@qq.com',
password: 'abcd'
})
.useFunction('password', 'SHA')
.toString();
console.log(insertSql);
//INSERT INTO `user` (name, sex, age, email, password) VALUES ('kyo', 1, 20, 'some@qq.com', SHA('abcd'));
insertSql = sqlHelper
.Insert
.into('user')
.setFieldsRows([{
sex: 1,
age: 20,
email: 'some1@qq.com',
password: 'abcd'
}, {
sex: 0,
age: 18,
email: 'some2@qq.com',
password: 'hjkl'
}])
.useFunction('password', 'MD5')
.toString();
console.log(insertSql);
//INSERT INTO `user` (sex, age, email, password) VALUES (1, 20, 'some1@qq.com', MD5('abcd')), (0, 18, 'some2@qq.com', MD5('hjkl'));
delete
let deleteSql = sqlHelper
.Delete
.from('user')
.where('id IN (?)', [1, 2, 3])
.toString();
console.log(deleteSql);
//DELETE FROM user WHERE id IN (1, 2, 3);
##Testing
We prepare some test, coming soon.
##Contributing
Contributors are welcome, please fork and send pull requests! If you have any ideas on how to make this project better then please submit an issue.
FAQs
mysql generator
The npm package mysql-generator receives a total of 7 weekly downloads. As such, mysql-generator popularity was classified as not popular.
We found that mysql-generator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.