https://github.com/sjmudd/mysql-variables-parser
A program to parse http://dev.mysql.com/doc/refman/X/en/server-system-variables.html output
https://github.com/sjmudd/mysql-variables-parser
Last synced: 2 months ago
JSON representation
A program to parse http://dev.mysql.com/doc/refman/X/en/server-system-variables.html output
- Host: GitHub
- URL: https://github.com/sjmudd/mysql-variables-parser
- Owner: sjmudd
- License: bsd-2-clause
- Created: 2015-10-18T20:21:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-20T05:07:40.000Z (over 9 years ago)
- Last Synced: 2025-01-23T20:48:20.511Z (4 months ago)
- Language: Go
- Size: 367 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mysql-variables-parser
A program to parse http://dev.mysql.com/doc/refman/5.X/en/server-system-variables.html outputThis program, built in go, was built to try to collect a definition of the MySQL
variables from the documentation at the URL above. It would be nice if mysqld would
actually allow you to query this information dynamically but that is not currently possible.Downloading can be done by doing this:
```
$ go get -u github.com/sjmudd/mysql-variables-parser
```Example of how to use:
```
$ sh sql_generator.sh
```This will collect the different web pages from Oracle's site and
generate the `examples/sysvarXX.sql` files for MySQL versions 5.0
to 5.7.More work is needed but this is a starting point.