Giter VIP home page Giter VIP logo

sqlgraph's Introduction

参考项目

解析SQL: https://github.com/alris/antlr4-oracle

图形化SQL:http://www.graphviz.org/pdf/dotguide.pdf

Python API图形化:https://graphviz.readthedocs.io/en/stable/examples.html#unix-py

graphviz 工具:http://www.graphviz.org/

antlr4介绍: https://www.cntofu.com/book/115/introduction.md

同一方法中表调用关系图形化(已实现)

图形化PKG包的调用关系

CREATE OR REPLACE PACKAGE BODY scott.pkg1
is
   PROCEDURE proc1
   (
      param1 in number,
	  param2 in varchar2,
	  result out number
   ) is
   begin
	 insert into table1(a1,b1,c1)
	 select h.a1,t.b1,h.c1 from 
	 (select s.a1,t.c1 from tables s , tablet t where s.a1 = t.a1) h,
	 (select x.b1 from tablex x) t 
	 where  t.b1 = h.b1;
	 
   
   end proc1;
   
END;
/

java学习导图

同一包中的表调用关系图形化

PROCEDURE proc2
   (
      param1 in number,
	  param2 in varchar2,
	  result out number
   ) is
   begin
	 insert into table2(a1,b1,c1)
	 select h.a1,t.b1,h.c1 from 
	 (select s.a1,t.c1 from table1 s , tablet t where s.a1 = t.a1) h,
	 (select x.b1 from tablex x) t 
	 where  t.b1 = h.b1;
	 
   
   end proc1;

java学习导图

跨包的表调用关系图形化

sqlgraph's People

Contributors

dengdaiyemanren avatar

Stargazers

Classic Values avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.