I would like produce a file which contains pairs of tables; a master on the left and a detail on the right or said another way parent and child.
In the article: "How to Visualize Your SQLite Database with One Command" using --output-file=output.png probably has some intermediate files that are used by GraphViz to provide the data. And for me a simple .dot file would be just fine. digraph Net {"Population" -> "deaths" "Population" -> "births" } What is the code necessary to do this?