https://github.com/themost-framework/mysql
Most Web Framework MySQL Adapter
https://github.com/themost-framework/mysql
data database mariadb mysql orm query sql
Last synced: about 2 months ago
JSON representation
Most Web Framework MySQL Adapter
- Host: GitHub
- URL: https://github.com/themost-framework/mysql
- Owner: themost-framework
- License: bsd-3-clause
- Created: 2022-05-21T19:25:49.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-09T17:37:09.000Z (3 months ago)
- Last Synced: 2025-03-28T14:11:40.126Z (3 months ago)
- Topics: data, database, mariadb, mysql, orm, query, sql
- Language: JavaScript
- Homepage:
- Size: 364 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/@themost%2Fmysql)


[](https://github.com/themost-framework/themost/blob/master/LICENSE)


[](https://www.npmjs.com/package/@themost%2Fmysql)
@themost/mysql
===========Most Web Framework MySQL Adapter
License: [BSD-3-Clause](https://github.com/themost-framework/mysql/blob/master/LICENSE)
## Install
npm install @themost/mysql
## Usage
Register MySQL adapter on app.json as follows:"adapterTypes": [
...
{ "name":"MySQL Data Adapter", "invariantName": "mysql", "type":"@themost/mysql" }
...
],
adapters: [
...
{ "name":"development", "invariantName":"mysql", "default":true,
"options": {
"host":"localhost",
"port":3306,
"user":"user",
"password":"password",
"database":"test"
}
}
...
]