Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wayofthepie/sqlsense
https://github.com/wayofthepie/sqlsense
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/wayofthepie/sqlsense
- Owner: wayofthepie
- License: mit
- Created: 2021-02-12T14:29:55.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-19T12:18:59.000Z (almost 4 years ago)
- Last Synced: 2024-11-06T03:44:34.823Z (about 2 months ago)
- Language: Rust
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sqlsense
Making sense of sql.# Graph Foreign Key Relationships
`sqlsense` can output a `dot` file, graphing SQL foreign key relationships.```
$ sqlsense path/to/sql.sql example.dot
```You can convert this to a PNG with `dot`.
```
$ dot -Tpng -o example.png example.dot
```