在好例子网,分享、交流、成长!
您当前所在位置:首页CSS 开发实例Box Model → 基于CodeMirror的一个在线sql编辑工具

基于CodeMirror的一个在线sql编辑工具

Box Model

下载此实例
  • 开发语言:CSS
  • 实例大小:4.27M
  • 下载次数:9
  • 浏览次数:47
  • 发布时间:2023-04-05
  • 实例类别:Box Model
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:5
 相关标签: Code sql DEM OD co

实例介绍

【实例简介】基于CodeMirror的一个在线sql编辑工具

* 左侧提供数据库表字段树形结构,可拖拽到sql编辑框。 * 输入首字母可提示表名字段名(表名字段名可自定义) 。 *括号高亮匹配。 * 执行与中断功能。 * 自定义外部接口获取sql关键词、函数、表字段等...* sql格式化。

【实例截图】

from clipboardfrom clipboard

from clipboard

from clipboard

【核心代码】
文件清单
├── __MACOSX
│   └── sql-editor-master
│       ├── css
│       │   └── theme
│       ├── image
│       ├── js
│       │   ├── editor
│       │   ├── jquery-easyui
│       │   │   ├── locale
│       │   │   ├── plugins
│       │   │   ├── src
│       │   │   └── themes
│       │   │       ├── black
│       │   │       │   └── images
│       │   │       ├── bootstrap
│       │   │       │   └── images
│       │   │       ├── default
│       │   │       │   └── images
│       │   │       ├── gray
│       │   │       │   └── images
│       │   │       ├── icons
│       │   │       ├── material
│       │   │       │   └── images
│       │   │       └── metro
│       │   │           └── images
│       │   └── layui
│       │       ├── css
│       │       │   └── modules
│       │       │       ├── laydate
│       │       │       │   └── default
│       │       │       └── layer
│       │       │           └── default
│       │       ├── font
│       │       ├── images
│       │       │   └── face
│       │       └── lay
│       │           └── modules
│       ├── json
│       ├── nginx-1.16.0
│       │   ├── conf
│       │   ├── contrib
│       │   │   ├── unicode2nginx
│       │   │   └── vim
│       │   │       ├── ftdetect
│       │   │       ├── ftplugin
│       │   │       ├── indent
│       │   │       └── syntax
│       │   ├── docs
│       │   └── logs
│       └── pic
└── sql-editor-master
    ├── css
    │   ├── codemirror.css
    │   ├── index.css
    │   ├── show-hint.css
    │   └── theme
    │       ├── dracula.css
    │       └── seti.css
    ├── folding.html
    ├── image
    │   ├── format.png
    │   ├── fun.png
    │   ├── kwd.png
    │   ├── run.png
    │   ├── save.png
    │   ├── stop0.png
    │   ├── stop1.png
    │   └── table.png
    ├── index.html
    ├── js
    │   ├── editor
    │   │   ├── codemirror.js
    │   │   ├── formatting.js
    │   │   ├── show-hint.js
    │   │   ├── sql-formatter.min.js
    │   │   ├── sql-hint.js
    │   │   ├── sql.js
    │   │   └── sublime.js
    │   ├── folding.js
    │   ├── index.js
    │   ├── jquery-easyui
    │   │   ├── easyloader.js
    │   │   ├── jquery.easyui.min.js
    │   │   ├── jquery.easyui.mobile.js
    │   │   ├── jquery.min.js
    │   │   ├── locale
    │   │   │   ├── easyui-lang-af.js
    │   │   │   ├── easyui-lang-am.js
    │   │   │   ├── easyui-lang-ar.js
    │   │   │   ├── easyui-lang-bg.js
    │   │   │   ├── easyui-lang-ca.js
    │   │   │   ├── easyui-lang-cs.js
    │   │   │   ├── easyui-lang-cz.js
    │   │   │   ├── easyui-lang-da.js
    │   │   │   ├── easyui-lang-de.js
    │   │   │   ├── easyui-lang-el.js
    │   │   │   ├── easyui-lang-en.js
    │   │   │   ├── easyui-lang-es.js
    │   │   │   ├── easyui-lang-fr.js
    │   │   │   ├── easyui-lang-it.js
    │   │   │   ├── easyui-lang-jp.js
    │   │   │   ├── easyui-lang-ko.js
    │   │   │   ├── easyui-lang-nl.js
    │   │   │   ├── easyui-lang-pl.js
    │   │   │   ├── easyui-lang-pt_BR.js
    │   │   │   ├── easyui-lang-ru.js
    │   │   │   ├── easyui-lang-sv_SE.js
    │   │   │   ├── easyui-lang-tr.js
    │   │   │   ├── easyui-lang-zh_CN.js
    │   │   │   └── easyui-lang-zh_TW.js
    │   │   ├── plugins
    │   │   │   ├── jquery.accordion.js
    │   │   │   ├── jquery.calendar.js
    │   │   │   ├── jquery.combobox.js
    │   │   │   ├── jquery.combogrid.js
    │   │   │   ├── jquery.combo.js
    │   │   │   ├── jquery.combotreegrid.js
    │   │   │   ├── jquery.combotree.js
    │   │   │   ├── jquery.datagrid.js
    │   │   │   ├── jquery.datalist.js
    │   │   │   ├── jquery.datebox.js
    │   │   │   ├── jquery.datetimebox.js
    │   │   │   ├── jquery.datetimespinner.js
    │   │   │   ├── jquery.dialog.js
    │   │   │   ├── jquery.draggable.js
    │   │   │   ├── jquery.droppable.js
    │   │   │   ├── jquery.filebox.js
    │   │   │   ├── jquery.form.js
    │   │   │   ├── jquery.layout.js
    │   │   │   ├── jquery.linkbutton.js
    │   │   │   ├── jquery.menubutton.js
    │   │   │   ├── jquery.menu.js
    │   │   │   ├── jquery.messager.js
    │   │   │   ├── jquery.mobile.js
    │   │   │   ├── jquery.numberbox.js
    │   │   │   ├── jquery.numberspinner.js
    │   │   │   ├── jquery.pagination.js
    │   │   │   ├── jquery.panel.js
    │   │   │   ├── jquery.parser.js
    │   │   │   ├── jquery.passwordbox.js
    │   │   │   ├── jquery.progressbar.js
    │   │   │   ├── jquery.propertygrid.js
    │   │   │   ├── jquery.resizable.js
    │   │   │   ├── jquery.searchbox.js
    │   │   │   ├── jquery.slider.js
    │   │   │   ├── jquery.spinner.js
    │   │   │   ├── jquery.splitbutton.js
    │   │   │   ├── jquery.switchbutton.js
    │   │   │   ├── jquery.tabs.js
    │   │   │   ├── jquery.tagbox.js
    │   │   │   ├── jquery.textbox.js
    │   │   │   ├── jquery.timespinner.js
    │   │   │   ├── jquery.tooltip.js
    │   │   │   ├── jquery.treegrid.js
    │   │   │   ├── jquery.tree.js
    │   │   │   ├── jquery.validatebox.js
    │   │   │   └── jquery.window.js
    │   │   ├── src
    │   │   │   ├── easyloader.js
    │   │   │   ├── jquery.accordion.js
    │   │   │   ├── jquery.calendar.js
    │   │   │   ├── jquery.combobox.js
    │   │   │   ├── jquery.datebox.js
    │   │   │   ├── jquery.draggable.js
    │   │   │   ├── jquery.droppable.js
    │   │   │   ├── jquery.form.js
    │   │   │   ├── jquery.linkbutton.js
    │   │   │   ├── jquery.menu.js
    │   │   │   ├── jquery.parser.js
    │   │   │   ├── jquery.progressbar.js
    │   │   │   ├── jquery.propertygrid.js
    │   │   │   ├── jquery.resizable.js
    │   │   │   ├── jquery.slider.js
    │   │   │   ├── jquery.tabs.js
    │   │   │   └── jquery.window.js
    │   │   └── themes
    │   │       ├── black
    │   │       │   ├── accordion.css
    │   │       │   ├── calendar.css
    │   │       │   ├── combobox.css
    │   │       │   ├── combo.css
    │   │       │   ├── datagrid.css
    │   │       │   ├── datalist.css
    │   │       │   ├── datebox.css
    │   │       │   ├── dialog.css
    │   │       │   ├── easyui.css
    │   │       │   ├── filebox.css
    │   │       │   ├── images
    │   │       │   │   ├── accordion_arrows.png
    │   │       │   │   ├── blank.gif
    │   │       │   │   ├── calendar_arrows.png
    │   │       │   │   ├── combo_arrow.png
    │   │       │   │   ├── datagrid_icons.png
    │   │       │   │   ├── datebox_arrow.png
    │   │       │   │   ├── layout_arrows.png
    │   │       │   │   ├── linkbutton_bg.png
    │   │       │   │   ├── loading.gif
    │   │       │   │   ├── menu_arrows.png
    │   │       │   │   ├── messager_icons.png
    │   │       │   │   ├── pagination_icons.png
    │   │       │   │   ├── panel_tools.png
    │   │       │   │   ├── passwordbox_close.png
    │   │       │   │   ├── passwordbox_open.png
    │   │       │   │   ├── searchbox_button.png
    │   │       │   │   ├── slider_handle.png
    │   │       │   │   ├── spinner_arrows.png
    │   │       │   │   ├── tabs_icons.png
    │   │       │   │   ├── tagbox_icons.png
    │   │       │   │   ├── tree_icons.png
    │   │       │   │   └── validatebox_warning.png
    │   │       │   ├── layout.css
    │   │       │   ├── linkbutton.css
    │   │       │   ├── menubutton.css
    │   │       │   ├── menu.css
    │   │       │   ├── messager.css
    │   │       │   ├── numberbox.css
    │   │       │   ├── pagination.css
    │   │       │   ├── panel.css
    │   │       │   ├── passwordbox.css
    │   │       │   ├── progressbar.css
    │   │       │   ├── propertygrid.css
    │   │       │   ├── searchbox.css
    │   │       │   ├── slider.css
    │   │       │   ├── spinner.css
    │   │       │   ├── splitbutton.css
    │   │       │   ├── switchbutton.css
    │   │       │   ├── tabs.css
    │   │       │   ├── tagbox.css
    │   │       │   ├── textbox.css
    │   │       │   ├── tooltip.css
    │   │       │   ├── tree.css
    │   │       │   ├── validatebox.css
    │   │       │   └── window.css
    │   │       ├── bootstrap
    │   │       │   ├── accordion.css
    │   │       │   ├── calendar.css
    │   │       │   ├── combobox.css
    │   │       │   ├── combo.css
    │   │       │   ├── datagrid.css
    │   │       │   ├── datalist.css
    │   │       │   ├── datebox.css
    │   │       │   ├── dialog.css
    │   │       │   ├── easyui.css
    │   │       │   ├── filebox.css
    │   │       │   ├── images
    │   │       │   │   ├── accordion_arrows.png
    │   │       │   │   ├── blank.gif
    │   │       │   │   ├── calendar_arrows.png
    │   │       │   │   ├── combo_arrow.png
    │   │       │   │   ├── datagrid_icons.png
    │   │       │   │   ├── datebox_arrow.png
    │   │       │   │   ├── layout_arrows.png
    │   │       │   │   ├── linkbutton_bg.png
    │   │       │   │   ├── loading.gif
    │   │       │   │   ├── menu_arrows.png
    │   │       │   │   ├── messager_icons.png
    │   │       │   │   ├── pagination_icons.png
    │   │       │   │   ├── panel_tools.png
    │   │       │   │   ├── passwordbox_close.png
    │   │       │   │   ├── passwordbox_open.png
    │   │       │   │   ├── searchbox_button.png
    │   │       │   │   ├── slider_handle.png
    │   │       │   │   ├── spinner_arrows.png
    │   │       │   │   ├── tabs_icons.png
    │   │       │   │   ├── tagbox_icons.png
    │   │       │   │   ├── tree_icons.png
    │   │       │   │   └── validatebox_warning.png
    │   │       │   ├── layout.css
    │   │       │   ├── linkbutton.css
    │   │       │   ├── menubutton.css
    │   │       │   ├── menu.css
    │   │       │   ├── messager.css
    │   │       │   ├── numberbox.css
    │   │       │   ├── pagination.css
    │   │       │   ├── panel.css
    │   │       │   ├── passwordbox.css
    │   │       │   ├── progressbar.css
    │   │       │   ├── propertygrid.css
    │   │       │   ├── searchbox.css
    │   │       │   ├── slider.css
    │   │       │   ├── spinner.css
    │   │       │   ├── splitbutton.css
    │   │       │   ├── switchbutton.css
    │   │       │   ├── tabs.css
    │   │       │   ├── tagbox.css
    │   │       │   ├── textbox.css
    │   │       │   ├── tooltip.css
    │   │       │   ├── tree.css
    │   │       │   ├── validatebox.css
    │   │       │   └── window.css
    │   │       ├── color.css
    │   │       ├── default
    │   │       │   ├── accordion.css
    │   │       │   ├── calendar.css
    │   │       │   ├── combobox.css
    │   │       │   ├── combo.css
    │   │       │   ├── datagrid.css
    │   │       │   ├── datalist.css
    │   │       │   ├── datebox.css
    │   │       │   ├── dialog.css
    │   │       │   ├── easyui.css
    │   │       │   ├── filebox.css
    │   │       │   ├── images
    │   │       │   │   ├── accordion_arrows.png
    │   │       │   │   ├── blank.gif
    │   │       │   │   ├── calendar_arrows.png
    │   │       │   │   ├── combo_arrow.png
    │   │       │   │   ├── datagrid_icons.png
    │   │       │   │   ├── datebox_arrow.png
    │   │       │   │   ├── layout_arrows.png
    │   │       │   │   ├── linkbutton_bg.png
    │   │       │   │   ├── loading.gif
    │   │       │   │   ├── menu_arrows1.png
    │   │       │   │   ├── menu_arrows.png
    │   │       │   │   ├── messager_icons.png
    │   │       │   │   ├── pagination_icons.png
    │   │       │   │   ├── panel_tools.png
    │   │       │   │   ├── passwordbox_close.png
    │   │       │   │   ├── passwordbox_open.png
    │   │       │   │   ├── searchbox_button.png
    │   │       │   │   ├── slider_handle.png
    │   │       │   │   ├── spinner_arrows.png
    │   │       │   │   ├── tabs_icons.png
    │   │       │   │   ├── tagbox_icons.png
    │   │       │   │   ├── tree_icons.png
    │   │       │   │   ├── validatebox_warning.png
    │   │       │   │   └── Web Database.png
    │   │       │   ├── layout.css
    │   │       │   ├── linkbutton.css
    │   │       │   ├── menubutton.css
    │   │       │   ├── menu.css
    │   │       │   ├── messager.css
    │   │       │   ├── numberbox.css
    │   │       │   ├── pagination.css
    │   │       │   ├── panel.css
    │   │       │   ├── passwordbox.css
    │   │       │   ├── progressbar.css
    │   │       │   ├── propertygrid.css
    │   │       │   ├── searchbox.css
    │   │       │   ├── slider.css
    │   │       │   ├── spinner.css
    │   │       │   ├── splitbutton.css
    │   │       │   ├── switchbutton.css
    │   │       │   ├── tabs.css
    │   │       │   ├── tagbox.css
    │   │       │   ├── textbox.css
    │   │       │   ├── tooltip.css
    │   │       │   ├── tree.css
    │   │       │   ├── validatebox.css
    │   │       │   └── window.css
    │   │       ├── gray
    │   │       │   ├── accordion.css
    │   │       │   ├── calendar.css
    │   │       │   ├── combobox.css
    │   │       │   ├── combo.css
    │   │       │   ├── datagrid.css
    │   │       │   ├── datalist.css
    │   │       │   ├── datebox.css
    │   │       │   ├── dialog.css
    │   │       │   ├── easyui.css
    │   │       │   ├── filebox.css
    │   │       │   ├── images
    │   │       │   │   ├── accordion_arrows.png
    │   │       │   │   ├── blank.gif
    │   │       │   │   ├── calendar_arrows.png
    │   │       │   │   ├── combo_arrow.png
    │   │       │   │   ├── datagrid_icons.png
    │   │       │   │   ├── datebox_arrow.png
    │   │       │   │   ├── layout_arrows.png
    │   │       │   │   ├── linkbutton_bg.png
    │   │       │   │   ├── loading.gif
    │   │       │   │   ├── menu_arrows.png
    │   │       │   │   ├── messager_icons.png
    │   │       │   │   ├── pagination_icons.png
    │   │       │   │   ├── panel_tools.png
    │   │       │   │   ├── passwordbox_close.png
    │   │       │   │   ├── passwordbox_open.png
    │   │       │   │   ├── searchbox_button.png
    │   │       │   │   ├── slider_handle.png
    │   │       │   │   ├── spinner_arrows.png
    │   │       │   │   ├── tabs_icons.png
    │   │       │   │   ├── tagbox_icons.png
    │   │       │   │   ├── tree_icons.png
    │   │       │   │   └── validatebox_warning.png
    │   │       │   ├── layout.css
    │   │       │   ├── linkbutton.css
    │   │       │   ├── menubutton.css
    │   │       │   ├── menu.css
    │   │       │   ├── messager.css
    │   │       │   ├── numberbox.css
    │   │       │   ├── pagination.css
    │   │       │   ├── panel.css
    │   │       │   ├── passwordbox.css
    │   │       │   ├── progressbar.css
    │   │       │   ├── propertygrid.css
    │   │       │   ├── searchbox.css
    │   │       │   ├── slider.css
    │   │       │   ├── spinner.css
    │   │       │   ├── splitbutton.css
    │   │       │   ├── switchbutton.css
    │   │       │   ├── tabs.css
    │   │       │   ├── tagbox.css
    │   │       │   ├── textbox.css
    │   │       │   ├── tooltip.css
    │   │       │   ├── tree.css
    │   │       │   ├── validatebox.css
    │   │       │   └── window.css
    │   │       ├── icon.css
    │   │       ├── icons
    │   │       │   ├── 1245O0R23W20-6391S3.gif
    │   │       │   ├── analise.png
    │   │       │   ├── back.png
    │   │       │   ├── blank.gif
    │   │       │   ├── byxz.png
    │   │       │   ├── cancel.png
    │   │       │   ├── caozuo_xian.png
    │   │       │   ├── circle.png
    │   │       │   ├── clear.png
    │   │       │   ├── close.png
    │   │       │   ├── cut.png
    │   │       │   ├── database.png
    │   │       │   ├── database_table.png
    │   │       │   ├── dgc.png
    │   │       │   ├── dx.png
    │   │       │   ├── edit_add.png
    │   │       │   ├── edit_remove.png
    │   │       │   ├── exit.png
    │   │       │   ├── export.png
    │   │       │   ├── fangda.png
    │   │       │   ├── feiguhua.png
    │   │       │   ├── file.png
    │   │       │   ├── filesave.png
    │   │       │   ├── filter.png
    │   │       │   ├── folder.png
    │   │       │   ├── fz.png
    │   │       │   ├── gd.png
    │   │       │   ├── gdts.png
    │   │       │   ├── gh1.png
    │   │       │   ├── gh.png
    │   │       │   ├── ghxx.png
    │   │       │   ├── group.png
    │   │       │   ├── guhuahebing.png
    │   │       │   ├── guhuakelong.png
    │   │       │   ├── guhua.png
    │   │       │   ├── hb.png
    │   │       │   ├── help.png
    │   │       │   ├── home.png
    │   │       │   ├── icon-bar.png
    │   │       │   ├── icon-lineandbar.png
    │   │       │   ├── icon-line.png
    │   │       │   ├── icon-lingbar.png
    │   │       │   ├── icon-pie.png
    │   │       │   ├── icon-point.png
    │   │       │   ├── icon-stackbar.png
    │   │       │   ├── jcb.png
    │   │       │   ├── jcbt.png
    │   │       │   ├── js.png
    │   │       │   ├── kj.png
    │   │       │   ├── kl.png
    │   │       │   ├── large_chart.png
    │   │       │   ├── large_clipart.png
    │   │       │   ├── large_picture.png
    │   │       │   ├── large_shapes.png
    │   │       │   ├── large_smartart.png
    │   │       │   ├── lcw.png
    │   │       │   ├── lock.png
    │   │       │   ├── long_anniu.png
    │   │       │   ├── man.png
    │   │       │   ├── mini_add.png
    │   │       │   ├── mini_edit.png
    │   │       │   ├── mini_refresh.png
    │   │       │   ├── month.png
    │   │       │   ├── more.png
    │   │       │   ├── mrts.png
    │   │       │   ├── no.png
    │   │       │   ├── ok.png
    │   │       │   ├── order.png
    │   │       │   ├── pencil.png
    │   │       │   ├── pingjia.png
    │   │       │   ├── pjz.png
    │   │       │   ├── print.png
    │   │       │   ├── px.png
    │   │       │   ├── qh.png
    │   │       │   ├── qhyh.png
    │   │       │   ├── redo.png
    │   │       │   ├── reload.png
    │   │       │   ├── rq.png
    │   │       │   ├── run.png
    │   │       │   ├── save.png
    │   │       │   ├── search.png
    │   │       │   ├── shanchu.png
    │   │       │   ├── shezhi1.png
    │   │       │   ├── shezhi.png
    │   │       │   ├── shoucang1.png
    │   │       │   ├── shoucang.png
    │   │       │   ├── shuju_diqiu.png
    │   │       │   ├── sousuo.png
    │   │       │   ├── sql.png
    │   │       │   ├── stastics.png
    │   │       │   ├── stop.png
    │   │       │   ├── st.png
    │   │       │   ├── submit.png
    │   │       │   ├── sum.png
    │   │       │   ├── syc.png
    │   │       │   ├── sy.png
    │   │       │   ├── sz.png
    │   │       │   ├── table.png
    │   │       │   ├── tingzhi.png
    │   │       │   ├── tip.png
    │   │       │   ├── tjsz.png
    │   │       │   ├── ts.png
    │   │       │   ├── undo.png
    │   │       │   ├── view.png
    │   │       │   ├── wait.png
    │   │       │   ├── wodeguhua_xian.png
    │   │       │   ├── wxts.png
    │   │       │   ├── wxtx.png
    │   │       │   ├── xj.png
    │   │       │   ├── xt1.png
    │   │       │   ├── xt.png
    │   │       │   ├── xy.png
    │   │       │   ├── xz.png
    │   │       │   ├── yjz.png
    │   │       │   ├── yonghu.png
    │   │       │   ├── yujing.png
    │   │       │   ├── yx.png
    │   │       │   ├── zd.png
    │   │       │   ├── zdycxjgj.png
    │   │       │   ├── zdycx.png
    │   │       │   ├── zdz.png
    │   │       │   ├── zf.png
    │   │       │   ├── zhixing.png
    │   │       │   ├── zhuti1.png
    │   │       │   ├── zhuti.png
    │   │       │   └── zxz.png
    │   │       ├── material
    │   │       │   ├── accordion.css
    │   │       │   ├── calendar.css
    │   │       │   ├── combobox.css
    │   │       │   ├── combo.css
    │   │       │   ├── datagrid.css
    │   │       │   ├── datalist.css
    │   │       │   ├── datebox.css
    │   │       │   ├── dialog.css
    │   │       │   ├── easyui.css
    │   │       │   ├── filebox.css
    │   │       │   ├── images
    │   │       │   │   ├── accordion_arrows.png
    │   │       │   │   ├── blank.gif
    │   │       │   │   ├── calendar_arrows.png
    │   │       │   │   ├── combo_arrow.png
    │   │       │   │   ├── datagrid_icons.png
    │   │       │   │   ├── datebox_arrow.png
    │   │       │   │   ├── layout_arrows.png
    │   │       │   │   ├── linkbutton_bg.png
    │   │       │   │   ├── loading.gif
    │   │       │   │   ├── menu_arrows.png
    │   │       │   │   ├── messager_icons.png
    │   │       │   │   ├── pagination_icons.png
    │   │       │   │   ├── panel_tools.png
    │   │       │   │   ├── passwordbox_close.png
    │   │       │   │   ├── passwordbox_open.png
    │   │       │   │   ├── searchbox_button.png
    │   │       │   │   ├── slider_handle.png
    │   │       │   │   ├── spinner_arrows.png
    │   │       │   │   ├── tabs_icons.png
    │   │       │   │   ├── tagbox_icons.png
    │   │       │   │   ├── Thumbs.db
    │   │       │   │   ├── tree_icons.png
    │   │       │   │   └── validatebox_warning.png
    │   │       │   ├── layout.css
    │   │       │   ├── linkbutton.css
    │   │       │   ├── menubutton.css
    │   │       │   ├── menu.css
    │   │       │   ├── messager.css
    │   │       │   ├── numberbox.css
    │   │       │   ├── pagination.css
    │   │       │   ├── panel.css
    │   │       │   ├── passwordbox.css
    │   │       │   ├── progressbar.css
    │   │       │   ├── propertygrid.css
    │   │       │   ├── searchbox.css
    │   │       │   ├── slider.css
    │   │       │   ├── spinner.css
    │   │       │   ├── splitbutton.css
    │   │       │   ├── switchbutton.css
    │   │       │   ├── tabs.css
    │   │       │   ├── tagbox.css
    │   │       │   ├── textbox.css
    │   │       │   ├── tooltip.css
    │   │       │   ├── tree.css
    │   │       │   ├── validatebox.css
    │   │       │   └── window.css
    │   │       ├── metro
    │   │       │   ├── accordion.css
    │   │       │   ├── calendar.css
    │   │       │   ├── combobox.css
    │   │       │   ├── combo.css
    │   │       │   ├── datagrid.css
    │   │       │   ├── datalist.css
    │   │       │   ├── datebox.css
    │   │       │   ├── dialog.css
    │   │       │   ├── easyui.css
    │   │       │   ├── filebox.css
    │   │       │   ├── images
    │   │       │   │   ├── accordion_arrows.png
    │   │       │   │   ├── blank.gif
    │   │       │   │   ├── calendar_arrows.png
    │   │       │   │   ├── combo_arrow.png
    │   │       │   │   ├── datagrid_icons.png
    │   │       │   │   ├── datebox_arrow.png
    │   │       │   │   ├── layout_arrows.png
    │   │       │   │   ├── linkbutton_bg.png
    │   │       │   │   ├── loading.gif
    │   │       │   │   ├── menu_arrows.png
    │   │       │   │   ├── messager_icons.png
    │   │       │   │   ├── pagination_icons.png
    │   │       │   │   ├── panel_tools.png
    │   │       │   │   ├── passwordbox_close.png
    │   │       │   │   ├── passwordbox_open.png
    │   │       │   │   ├── searchbox_button.png
    │   │       │   │   ├── slider_handle.png
    │   │       │   │   ├── spinner_arrows.png
    │   │       │   │   ├── tabs_icons.png
    │   │       │   │   ├── tagbox_icons.png
    │   │       │   │   ├── tree_icons.png
    │   │       │   │   └── validatebox_warning.png
    │   │       │   ├── layout.css
    │   │       │   ├── linkbutton.css
    │   │       │   ├── menubutton.css
    │   │       │   ├── menu.css
    │   │       │   ├── messager.css
    │   │       │   ├── numberbox.css
    │   │       │   ├── pagination.css
    │   │       │   ├── panel.css
    │   │       │   ├── passwordbox.css
    │   │       │   ├── progressbar.css
    │   │       │   ├── propertygrid.css
    │   │       │   ├── searchbox.css
    │   │       │   ├── slider.css
    │   │       │   ├── spinner.css
    │   │       │   ├── splitbutton.css
    │   │       │   ├── switchbutton.css
    │   │       │   ├── tabs.css
    │   │       │   ├── tagbox.css
    │   │       │   ├── textbox.css
    │   │       │   ├── tooltip.css
    │   │       │   ├── tree.css
    │   │       │   ├── validatebox.css
    │   │       │   └── window.css
    │   │       └── mobile.css
    │   ├── jquery.min.js
    │   └── layui
    │       ├── css
    │       │   ├── layui.css
    │       │   ├── layui.mobile.css
    │       │   └── modules
    │       │       ├── code.css
    │       │       ├── laydate
    │       │       │   └── default
    │       │       │       └── laydate.css
    │       │       └── layer
    │       │           └── default
    │       │               ├── icon-ext.png
    │       │               ├── icon.png
    │       │               ├── layer.css
    │       │               ├── loading-0.gif
    │       │               ├── loading-1.gif
    │       │               └── loading-2.gif
    │       ├── font
    │       │   ├── iconfont.eot
    │       │   ├── iconfont.svg
    │       │   ├── iconfont.ttf
    │       │   ├── iconfont.woff
    │       │   └── iconfont.woff2
    │       ├── images
    │       │   └── face
    │       │       ├── 0.gif
    │       │       ├── 10.gif
    │       │       ├── 11.gif
    │       │       ├── 12.gif
    │       │       ├── 13.gif
    │       │       ├── 14.gif
    │       │       ├── 15.gif
    │       │       ├── 16.gif
    │       │       ├── 17.gif
    │       │       ├── 18.gif
    │       │       ├── 19.gif
    │       │       ├── 1.gif
    │       │       ├── 20.gif
    │       │       ├── 21.gif
    │       │       ├── 22.gif
    │       │       ├── 23.gif
    │       │       ├── 24.gif
    │       │       ├── 25.gif
    │       │       ├── 26.gif
    │       │       ├── 27.gif
    │       │       ├── 28.gif
    │       │       ├── 29.gif
    │       │       ├── 2.gif
    │       │       ├── 30.gif
    │       │       ├── 31.gif
    │       │       ├── 32.gif
    │       │       ├── 33.gif
    │       │       ├── 34.gif
    │       │       ├── 35.gif
    │       │       ├── 36.gif
    │       │       ├── 37.gif
    │       │       ├── 38.gif
    │       │       ├── 39.gif
    │       │       ├── 3.gif
    │       │       ├── 40.gif
    │       │       ├── 41.gif
    │       │       ├── 42.gif
    │       │       ├── 43.gif
    │       │       ├── 44.gif
    │       │       ├── 45.gif
    │       │       ├── 46.gif
    │       │       ├── 47.gif
    │       │       ├── 48.gif
    │       │       ├── 49.gif
    │       │       ├── 4.gif
    │       │       ├── 50.gif
    │       │       ├── 51.gif
    │       │       ├── 52.gif
    │       │       ├── 53.gif
    │       │       ├── 54.gif
    │       │       ├── 55.gif
    │       │       ├── 56.gif
    │       │       ├── 57.gif
    │       │       ├── 58.gif
    │       │       ├── 59.gif
    │       │       ├── 5.gif
    │       │       ├── 60.gif
    │       │       ├── 61.gif
    │       │       ├── 62.gif
    │       │       ├── 63.gif
    │       │       ├── 64.gif
    │       │       ├── 65.gif
    │       │       ├── 66.gif
    │       │       ├── 67.gif
    │       │       ├── 68.gif
    │       │       ├── 69.gif
    │       │       ├── 6.gif
    │       │       ├── 70.gif
    │       │       ├── 71.gif
    │       │       ├── 7.gif
    │       │       ├── 8.gif
    │       │       └── 9.gif
    │       ├── lay
    │       │   └── modules
    │       │       ├── carousel.js
    │       │       ├── code.js
    │       │       ├── colorpicker.js
    │       │       ├── element.js
    │       │       ├── flow.js
    │       │       ├── form.js
    │       │       ├── jquery.js
    │       │       ├── laydate.js
    │       │       ├── layedit.js
    │       │       ├── layer.js
    │       │       ├── laypage.js
    │       │       ├── laytpl.js
    │       │       ├── mobile.js
    │       │       ├── rate.js
    │       │       ├── slider.js
    │       │       ├── table.js
    │       │       ├── transfer.js
    │       │       ├── tree.js
    │       │       ├── upload.js
    │       │       └── util.js
    │       ├── layui.all.js
    │       └── layui.js
    ├── json
    │   ├── allWords.json
    │   └── tables.json
    ├── nginx-1.16.0
    │   ├── conf
    │   │   ├── fastcgi.conf
    │   │   ├── fastcgi_params
    │   │   ├── koi-utf
    │   │   ├── koi-win
    │   │   ├── mime.types
    │   │   ├── nginx.conf
    │   │   ├── scgi_params
    │   │   ├── uwsgi_params
    │   │   └── win-utf
    │   ├── contrib
    │   │   ├── geo2nginx.pl
    │   │   ├── README
    │   │   ├── unicode2nginx
    │   │   │   ├── koi-utf
    │   │   │   ├── unicode-to-nginx.pl
    │   │   │   └── win-utf
    │   │   └── vim
    │   │       ├── ftdetect
    │   │       │   └── nginx.vim
    │   │       ├── ftplugin
    │   │       │   └── nginx.vim
    │   │       ├── indent
    │   │       │   └── nginx.vim
    │   │       └── syntax
    │   │           └── nginx.vim
    │   ├── docs
    │   │   ├── CHANGES
    │   │   ├── CHANGES.ru
    │   │   ├── LICENSE
    │   │   ├── OpenSSL.LICENSE
    │   │   ├── PCRE.LICENCE
    │   │   ├── README
    │   │   └── zlib.LICENSE
    │   ├── logs
    │   │   ├── access.log
    │   │   └── error.log
    │   └── nginx.exe
    ├── pic
    │   ├── pic_01.png
    │   ├── pic_02.png
    │   ├── pic_03.png
    │   ├── pic_101.png
    │   ├── pic_102.png
    │   └── pic_103.png
    ├── README.md
    └── test
        ├── addon
        │   ├── edit
        │   │   ├── closebrackets.js
        │   │   ├── closetag.js
        │   │   ├── continuelist.js
        │   │   ├── matchbrackets.js
        │   │   ├── matchtags.js
        │   │   └── trailingspace.js
        │   └── fold
        │       ├── brace-fold.js
        │       ├── comment-fold.js
        │       ├── foldcode.js
        │       ├── foldgutter.css
        │       ├── foldgutter.js
        │       ├── indent-fold.js
        │       ├── markdown-fold.js
        │       ├── matchbrackets.js
        │       └── xml-fold.js
        ├── lib
        │   ├── codemirror.css
        │   └── codemirror.js
        └── mode
            ├── javascript
            │   ├── index.html
            │   ├── javascript.js
            │   ├── json-ld.html
            │   ├── test.js
            │   └── typescript.html
            ├── python
            │   ├── index.html
            │   ├── python.js
            │   └── test.js
            └── sql
                ├── index.html
                └── sql.js

108 directories, 751 files

标签: Code sql DEM OD co

实例下载地址

基于CodeMirror的一个在线sql编辑工具

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警