codecamp

首页

Yearning SQL审核平台

 

简介

Yearning SQL 审计平台 基于Vue.js与Django的整套sql审核平台解决方案。

提供基于Inception的SQL检测及执行

功能

  • SQL可视化自动生成
    • INDEX 索引语句
    • ALTER 更改表结构语句
  • 数据库字典自动生成
  • SQL审核
    • 流程化工单
    • SQL语句检测
    • SQL语句执行
    • SQL回滚
    • 站内信通知
    • todoList
    • 钉钉webhook机器人通知
  • 历史审核记录
  • 用户权限及管理

注意

Yearning 是基于Inception的web可视化SQL审核平台,其本身只提供可视化交互页面并不具备sql审核的能力。所以必须搭配Inception一起使用。建议使用者先熟悉Inception使用方法后再进行使用!

Inception 下载地址 https://github.com/mysql-inception/inception

Inception 文档地址 http://mysql-inception.github.io/inception-document/

生产环境
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

使用手册

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }