@nano-sql/adapter-mysql
v2.0.4
Published
Easily Run MySQL with nanoSQL 2!
Downloads
123
Readme
Documentation | Bugs | Chat
Installation
npm i @nano-sql/adapter-mysql --save
Usage
import { MySQL } from "@nano-sql/adapter-mysql";
import { nSQL } from "@nano-sql/core";
nSQL().connect({
id: "my_db",
mode: new MySQL({ // required
host: "localhost",
database: "test",
user: "root",
password: "secret"
}),
tables: [...]
}).then(...)
API
The MySQL
class accepts one optional argument as its constructor.
MySQL Connect Options
The first object is passed directly into the backend mysql library to adjust the connect preferencs. This object is fully documented here.
MIT License
Copyright (c) 2019 Scott Lott
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Changelog
[2.0.4]
- Documentation and dependency updates.
[2.0.3]
- Readme and dependency updates.
[2.0.2]
- Added quotes to table names.
[2.0.1]
- Readme tweak
[2.0.0]
- First release