https://github.com/kongnet/j2sql
mongo like operation for mysql
https://github.com/kongnet/j2sql
Last synced: 7 months ago
JSON representation
mongo like operation for mysql
- Host: GitHub
- URL: https://github.com/kongnet/j2sql
- Owner: kongnet
- License: mit
- Created: 2016-11-26T10:46:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T08:18:27.000Z (over 2 years ago)
- Last Synced: 2024-10-29T21:03:54.491Z (8 months ago)
- Language: JavaScript
- Size: 740 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# j2sql
mongo like operation for mysql

[](https://coveralls.io/github/kongnet/j2sql?branch=master)[](https://nodei.co/npm/j2sql/)
[](https://github.com/kongnet/j2sql)
---
**npm install j2sql**
---
# 第一步
```
let db = require('j2sql')(yourmysqlConfig);
```### yourmysqlConfig
```
mysql: {
host: '127.0.0.1', //ip或者域名
port: 3306,
pool: 1000,
timeout: 500000,
user: 'zc_test',
password: 'zc_test2016',
database: 'zc_test',
multipleStatements: true //允许多行运行
}
```# 第二步
#### 1-6为生成SQL语句
* 1.find&findone
* 2.remove
* 3.update
* 4.insert
* 4-1.不重复insert
* 5.cmd测试
* 6.特殊类型函数条件
* 7.exec 执行语句,事务
* 8.json column ready :>
* 9.ES7 compatible####具体用法都在测试文档中
Enjoy :)