X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=script%2Fsqlt-graph;h=137b3636d24a788806e7f5c8e9bfd55b8b342b82;hb=2c1e8cab7a9c4f6f5f408aed19dfdc2ec215b6b9;hp=2d13ce7efb0e1b51274f24f2f06a9890254af4a4;hpb=ba506e52c480afe33dfec6b38a12759fad1e7fa2;p=dbsrgits%2FSQL-Translator.git diff --git a/script/sqlt-graph b/script/sqlt-graph index 2d13ce7..137b363 100755 --- a/script/sqlt-graph +++ b/script/sqlt-graph @@ -14,11 +14,11 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA -# 02111-1307 USA +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301 USA. # ------------------------------------------------------------------- -=head1 NAME +=head1 NAME sqlt-graph - Automatically create a graph from a database schema @@ -30,9 +30,9 @@ sqlt-graph - Automatically create a graph from a database schema -l|--layout Layout schema for GraphViz ("dot," "neato," "twopi"; default "dot") - -n|--node-shape Shape of the nodes ("record," "plaintext," - "ellipse," "circle," "egg," "triangle," "box," - "diamond," "trapezium," "parallelogram," "house," + -n|--node-shape Shape of the nodes ("record," "plaintext," + "ellipse," "circle," "egg," "triangle," "box," + "diamond," "trapezium," "parallelogram," "house," "hexagon," "octagon," default "record") -o|--output Output file name (default STDOUT) -t|--output-type Output file type ("canon", "text," "ps," "hpgl," @@ -44,13 +44,13 @@ sqlt-graph - Automatically create a graph from a database schema --no-fields Don't show field names --height Image height (in inches, default "11", set to "0" to undefine) - --width Image width (in inches, default "8.5", + --width Image width (in inches, default "8.5", set to "0" to undefine) --fontsize custom font size for node and edge labels - --fontname name of custom font (or full path to font file) for + --fontname name of custom font (or full path to font file) for node, edge, and graph labels --nodeattr attribute name and value (in key=val syntax) for - nodes; this option may be repeated to specify + nodes; this option may be repeated to specify multiple node attributes --edgeattr same as --nodeattr, but for edge attributes --graphattr same as --nodeattr, but for graph attributes @@ -60,9 +60,10 @@ sqlt-graph - Automatically create a graph from a database schema --show-sizes Show column sizes for VARCHAR and CHAR fields --show-constraints Show list of constraints for each field -s|--skip Fields to skip in natural joins - --skip-tables Comma-separated list of table names to exclude + --skip-tables Comma-separated list of table names to exclude --skip-tables-like Comma-separated list of regexen to exclude tables --debug Print debugging information + --trace Print parser trace info =head1 DESCRIPTION @@ -80,16 +81,16 @@ This can prove too permissive, however, as you probably don't want a field called "name" to be considered a foreign key, so you could include it in the "skip" option, and all fields called "name" will be excluded from natural joins. A more efficient method, however, might -be to simply deduce the foriegn keys from primary keys to other fields +be to simply deduce the foreign keys from primary keys to other fields named the same in other tables. Use the "natural-join-pk" option -to acheive this. +to achieve this. If the schema defines foreign keys, then the graph produced will be directed showing the direction of the relationship. If the foreign keys are intuited via natural joins, the graph will be undirected. -Clustering of tables allows you to group and box tables according to -function or domain or whatever criteria you choose. The syntax for +Clustering of tables allows you to group and box tables according to +function or domain or whatever criteria you choose. The syntax for clustering tables is: cluster1=table1,table2;cluster2=table3,table4 @@ -107,17 +108,17 @@ use Pod::Usage; use SQL::Translator; use vars '$VERSION'; -$VERSION = '1.60'; +$VERSION = '1.59'; # # Get arguments. # -my ( - $layout, $node_shape, $out_file, $output_type, $db_driver, $add_color, +my ( + $layout, $node_shape, $out_file, $output_type, $db_driver, $add_color, $natural_join, $join_pk_only, $skip_fields, $show_datatypes, $show_sizes, $show_constraints, $debug, $help, $height, $width, $no_fields, $fontsize, $fontname, $skip_tables, $skip_tables_like, - $cluster + $cluster, $trace ); # multi-valued options: @@ -150,6 +151,7 @@ GetOptions( 'show-sizes' => \$show_sizes, 'show-constraints' => \$show_constraints, 'debug' => \$debug, + 'trace' => \$trace, 'h|help' => \$help, ) or die pod2usage; my @files = @ARGV; # the create script(s) for the original db @@ -158,10 +160,11 @@ pod2usage(1) if $help; pod2usage( -message => "No db driver specified" ) unless $db_driver; pod2usage( -message => 'No input file' ) unless @files; -my $translator = SQL::Translator->new( +my $translator = SQL::Translator->new( from => $db_driver, to => 'GraphViz', debug => $debug || 0, + trace => $trace || 0, producer_args => { out_file => $out_file, layout => $layout,