Skip to content

bbz-biel-informatik/querygraph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QueryGraph

Goal

Visually display the flow of an SQL query. Important: this project does not try to model the real order of operations in a DBMS, but to show the conceptual flow of data.

A query like

SELECT * FROM players INNER JOIN teams ON players.team_id = teams.id WHERE teams.name = 'BSC YB' ORDER BY players.number ASC;

should generate a diagram similar to:

Development

  • Install rust with cargo
  • Build: cargo build
  • Run: ./target/debug/querygraph
  • Build & run: cargo run

The build and run commands can also be modified with --release.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages