Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
mjs-mysql-builder
Advanced tools
import DB from 'mysql-builder'
DB.query(queryString, params) // -> Promise<Array<RowType>> - all rows
DB.queryRow(queryString, params) // -> Promise<?RowType> - first row
import { FieldBuilder } from 'mysql-builder';
const field = (new FieldBuilder('id')) // -> FieldBuilder
.type('int(11)') // -> FieldBuilder
.increment() // -> FieldBuilder
.notNull() // -> FieldBuilder
.primary() // -> FieldBuilder
.get() // -> string
`id` int(11) AUTO_INCREMENT NOT NULL,
PRIMARY KEY (`id`)
import { SchemaBuilder } from 'mysql-builder';
const schema = (new SchemaBuilder('users'))
.add('id', f => f.type('int(11)').increment().notNull().primary())
.add('email', f => f.type('varchar(50)').notNull().unique())
.add('name', f => f.type('varchar(50)').nullable())
.add('type', f => f.type('varchar(30)').index().using(INDEX_TYPES.BTREE))
.add('book_id', f => f.type('int(11)').notNull().foreign().references('books', 'id').onDelete(REFERENCE_OPTIONS.CASCADE))
/* You can get Schema string */
.build() // -> string
/* Or Query to DataBase */
.create() // -> Promise<void>
import { QueryBuilder } from 'mysql-builder'
const q = (new QueryBuilder('users'))
.select('name')
.aggregate(AGGREGATION.SUM, 'age', 'age')
.where({ name: 'bob' })
.groupBy('name')
.having('SUM(age) > 100')
.sortBy('age', DOWN)
/* You can get query string */
.build() // -> string
/* Or Query to DataBase */
.get() // -> Promise<Array<DBRow>>
SELECT `name`, SUM(`age`) age FROM `users`
WHERE `name`=`bob`
GROUP BY `name`
HAVING SUM(age) > 100
ORDER BY `age` DESC
(new QueryBuilder('users'))
.select()
.where('age', '>', 5)
.where('name', 'LIKE', '%e%', 'AND')
.build();
SELECT * FROM `users`
WHERE `age` > 5 AND `name` LIKE '%e%'
import { Table } from 'mysql-builder';
const table = new Table('users');
type RowType = {[string]: any};
type ConditionType = number | RowType;
/* all supported methods */
table.insert(params: RowType) // -> Promise<void>
table.update(id: ConditionType, params: RowType) // -> Promise<void>
table.delete(id: ConditionType) // -> Promise<void>
table.set(id: ConditionType, field: string, value: any) // -> Promise<void>
table.find(id: ConditionType) // -> Promise<?RowType>
table.all(...fields: Array<string>) // -> Promise<Array<RowType>>
table.first(params: ?RowType) // -> Promise<{[string]: any}>
table.last(params: ?RowType) // -> Promise<{[string]: any}>
FAQs
Mysql query builder
The npm package mjs-mysql-builder receives a total of 1 weekly downloads. As such, mjs-mysql-builder popularity was classified as not popular.
We found that mjs-mysql-builder 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.