
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
light-api-mysql
Advanced tools
1.解决分页查询,查询参数数组传入失效的问题。
rdb.query(`SELECT * FROM book WHERE show_name like ? and app_describe like ? `,'%d%','%4%')
.then(function(result){
return reply.data(result);
});
也可写成下面的数组参数形式:
rdb.query(`SELECT * FROM book WHERE show_name like ? and app_describe like ? `,['%d%','%4%'])
.then(function(result){
return reply.data(result);
});
1.修复mysql链接池不能回收连接的问题
1.修复mysql链接池中取出连接使用时链接已关闭的问题
1.增加数据库连接配置的端口配置(port)和字符集配置(charset)
host : option.host (Default: 'localhost'),
port : option.port (Default: 3306),
user : option.user (Default: root),
password : option.password (Default: ''),
database : option.database (Default: 'test'),
charset : option.charset(Default: 'UTF8_GENERAL_CI')
1.修改数据库的update语句,兼容mysql关键(schema)字不能更新的问题
FAQs
the plgin of the light-api server for mysql service
The npm package light-api-mysql receives a total of 40 weekly downloads. As such, light-api-mysql popularity was classified as not popular.
We found that light-api-mysql 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.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.