实例介绍
PostgreSQL 数据库专用的建模工具,使用 QT 开发,支持 Windows、Linux 和 OS X 平台。 这里的是windows x64的编译版本,7zip压缩(7z格式),解压缩后直接使用。
【实例截图】
【核心代码】
16359647498818661825.7z
└── pgModeler0.9.2
├── bearer
│ └── qgenericbearer.dll
├── CHANGELOG.md
├── conf
│ ├── connections.conf
│ ├── defaults
│ │ ├── connections.conf
│ │ ├── diff-presets.conf
│ │ ├── example.dbm
│ │ ├── objects-style.conf
│ │ ├── pattern-highlight.conf
│ │ ├── pgmodeler.conf
│ │ ├── relationships.conf
│ │ ├── snippets.conf
│ │ ├── sql-highlight.conf
│ │ ├── ui-style.conf
│ │ └── xml-highlight.conf
│ ├── diff-presets.conf
│ ├── dtd
│ │ ├── connections.dtd
│ │ ├── diff-presets.dtd
│ │ ├── objects-style.dtd
│ │ ├── pgmodeler.dtd
│ │ ├── relationships.dtd
│ │ ├── snippets.dtd
│ │ ├── source-code-highlight.dtd
│ │ └── sql-history.dtd
│ ├── example.dbm
│ ├── objects-style.conf
│ ├── pattern-highlight.conf
│ ├── pgmodeler.conf
│ ├── pgmodeler_dbm.png
│ ├── pgmodeler_logo.png
│ ├── relationships.conf
│ ├── schemas
│ │ ├── application-dbm.sch
│ │ ├── commands.sch
│ │ ├── connections.sch
│ │ ├── desktop.sch
│ │ ├── diff-presets.sch
│ │ ├── file.sch
│ │ ├── objects-style.sch
│ │ ├── patterns.sch
│ │ ├── pgmodeler.sch
│ │ ├── preset.sch
│ │ ├── relationships.sch
│ │ ├── snippet.sch
│ │ ├── snippets.sch
│ │ ├── sql-history.sch
│ │ └── widget.sch
│ ├── snippets.conf
│ ├── sql-highlight.conf
│ ├── ui-style.conf
│ └── xml-highlight.conf
├── iconengines
│ └── qsvgicon.dll
├── imageformats
│ ├── qgif.dll
│ ├── qicns.dll
│ ├── qico.dll
│ ├── qjp2.dll
│ ├── qjpeg.dll
│ ├── qsvg.dll
│ ├── qtga.dll
│ ├── qtiff.dll
│ ├── qwbmp.dll
│ └── qwebp.dll
├── lang
│ ├── es_ES.qm
│ ├── es_ES.ts
│ ├── fr_FR.qm
│ ├── fr_FR.ts
│ ├── nl_NL.qm
│ ├── nl_NL.ts
│ ├── pt_BR.qm
│ ├── pt_BR.ts
│ ├── zh_CN.qm
│ └── zh_CN.ts
├── libbz2-1.dll
├── libcrypto-1_1-x64.dll
├── libdouble-conversion.dll
├── libfreetype-6.dll
├── libgcc_s_seh-1.dll
├── libglib-2.0-0.dll
├── libgraphite2.dll
├── libharfbuzz-0.dll
├── libiconv-2.dll
├── libicudt65.dll
├── libicudtd65.dll
├── libicuin65.dll
├── libicuind65.dll
├── libicuuc65.dll
├── libicuucd65.dll
├── libintl-8.dll
├── liblzma-5.dll
├── libobjrenderer.dll.a
├── libparsers.dll.a
├── libpcre-1.dll
├── libpcre2-16-0.dll
├── libpgconnector.dll.a
├── libpgmodeler.dll.a
├── libpgmodeler_ui.dll.a
├── libpng16-16.dll
├── libpq.dll
├── libssl-1_1-x64.dll
├── libstdc++-6.dll
├── libutils.dll.a
├── libwinpthread-1.dll
├── libxml2-2.dll
├── libzstd.dll
├── LICENSE
├── objrenderer.dll
├── parsers.dll
├── pgconnector.dll
├── pgmodeler-ch.exe
├── pgmodeler-cli.exe
├── pgmodeler.dll
├── pgmodeler.exe
├── pgmodeler_ui.dll
├── platforms
│ └── qwindows.dll
├── plugins
│ ├── dummy
│ │ ├── dummy.dll
│ │ ├── dummy.json
│ │ ├── dummy.pro
│ │ ├── lang
│ │ │ ├── dummy.en_US.qm
│ │ │ └── dummy.en_US.ts
│ │ ├── libdummy.dll.a
│ │ ├── Makefile
│ │ ├── moc
│ │ │ ├── moc_dummy.cpp
│ │ │ └── moc_predefs.h
│ │ ├── obj
│ │ │ ├── dummy.o
│ │ │ └── moc_dummy.o
│ │ ├── res
│ │ │ └── dummy.png
│ │ └── src
│ │ ├── dummy.cpp
│ │ └── dummy.h
│ ├── dummy.dll
│ ├── dummy.json
│ ├── Makefile
│ ├── plugins.pro
│ └── xml2object
│ ├── libxml2object.dll.a
│ ├── Makefile
│ ├── moc
│ │ ├── moc_predefs.h
│ │ ├── moc_xml2object.cpp
│ │ └── moc_xml2objectwidget.cpp
│ ├── obj
│ │ ├── moc_xml2object.o
│ │ ├── moc_xml2objectwidget.o
│ │ ├── xml2object.o
│ │ └── xml2objectwidget.o
│ ├── res
│ │ └── xml2object.png
│ ├── src
│ │ ├── ui_xml2objectwidget.h
│ │ ├── xml2object.cpp
│ │ ├── xml2object.h
│ │ ├── xml2objectwidget.cpp
│ │ └── xml2objectwidget.h
│ ├── ui
│ │ └── xml2objectwidget.ui
│ ├── xml2object.dll
│ ├── xml2object.json
│ └── xml2object.pro
├── printsupport
│ └── windowsprintersupport.dll
├── Qt5Core.dll
├── Qt5Gui.dll
├── Qt5Network.dll
├── Qt5PrintSupport.dll
├── Qt5Svg.dll
├── Qt5Widgets.dll
├── README.md
├── RELEASENOTES.md
├── samples
│ ├── 3dcitydb.dbm
│ ├── demo.dbm
│ ├── oldsample.dbm
│ ├── pagila.dbm
│ └── usda.dbm
├── schemas
│ ├── alter
│ │ ├── collation.sch
│ │ ├── column.sch
│ │ ├── constraint.sch
│ │ ├── database.sch
│ │ ├── diff.sch
│ │ ├── domain.sch
│ │ ├── domconstraint.sch
│ │ ├── eventtrigger.sch
│ │ ├── extension.sch
│ │ ├── foreigndatawrapper.sch
│ │ ├── foreignserver.sch
│ │ ├── foreigntable.sch
│ │ ├── function.sch
│ │ ├── index.sch
│ │ ├── owner.sch
│ │ ├── permission.sch
│ │ ├── policy.sch
│ │ ├── relationship.sch
│ │ ├── rename.sch
│ │ ├── role.sch
│ │ ├── schema.sch
│ │ ├── sequence.sch
│ │ ├── table.sch
│ │ ├── tablespace.sch
│ │ ├── truncate.sch
│ │ ├── usermapping.sch
│ │ └── usertype.sch
│ ├── catalog
│ │ ├── aggregate.sch
│ │ ├── cast.sch
│ │ ├── collation.sch
│ │ ├── column.sch
│ │ ├── comment.sch
│ │ ├── constraint.sch
│ │ ├── conversion.sch
│ │ ├── database.sch
│ │ ├── domain.sch
│ │ ├── eventtrigger.sch
│ │ ├── extension.sch
│ │ ├── foreigndatawrapper.sch
│ │ ├── foreignserver.sch
│ │ ├── foreigntable.sch
│ │ ├── function.sch
│ │ ├── index.sch
│ │ ├── language.sch
│ │ ├── notextobject.sch
│ │ ├── opclass.sch
│ │ ├── operator.sch
│ │ ├── opfamily.sch
│ │ ├── policy.sch
│ │ ├── role.sch
│ │ ├── rule.sch
│ │ ├── schema.sch
│ │ ├── sequence.sch
│ │ ├── server.sch
│ │ ├── table.sch
│ │ ├── tablespace.sch
│ │ ├── template.sch
│ │ ├── trigger.sch
│ │ ├── usermapping.sch
│ │ ├── usertype.sch
│ │ └── view.sch
│ ├── datadict
│ │ ├── column.sch
│ │ ├── constraint.sch
│ │ ├── datadict.sch
│ │ ├── index.sch
│ │ ├── item.sch
│ │ ├── link.sch
│ │ ├── styles.sch
│ │ ├── table.sch
│ │ └── view.sch
│ ├── sql
│ │ ├── aggregate.sch
│ │ ├── cast.sch
│ │ ├── collation.sch
│ │ ├── column.sch
│ │ ├── comment.sch
│ │ ├── constraint.sch
│ │ ├── conversion.sch
│ │ ├── database.sch
│ │ ├── dbmodel.sch
│ │ ├── domain.sch
│ │ ├── domconstraint.sch
│ │ ├── drop.sch
│ │ ├── element.sch
│ │ ├── eventtrigger.sch
│ │ ├── excelement.sch
│ │ ├── extension.sch
│ │ ├── foreigndatawrapper.sch
│ │ ├── foreignserver.sch
│ │ ├── foreigntable.sch
│ │ ├── function.sch
│ │ ├── genericsql.sch
│ │ ├── idxelement.sch
│ │ ├── index.sch
│ │ ├── language.sch
│ │ ├── opclass.sch
│ │ ├── operator.sch
│ │ ├── opfamily.sch
│ │ ├── parameter.sch
│ │ ├── partitionkey.sch
│ │ ├── permission.sch
│ │ ├── policy.sch
│ │ ├── relationship.sch
│ │ ├── role.sch
│ │ ├── rule.sch
│ │ ├── schema.sch
│ │ ├── sequence.sch
│ │ ├── table.sch
│ │ ├── tablespace.sch
│ │ ├── trigger.sch
│ │ ├── typeattribute.sch
│ │ ├── usermapping.sch
│ │ ├── usertype.sch
│ │ └── view.sch
│ └── xml
│ ├── aggregate.sch
│ ├── appendedsql.sch
│ ├── basetype.sch
│ ├── cast.sch
│ ├── collation.sch
│ ├── column.sch
│ ├── comment.sch
│ ├── constraint.sch
│ ├── conversion.sch
│ ├── customidxs.sch
│ ├── database.sch
│ ├── dbmodel.sch
│ ├── domain.sch
│ ├── domconstraint.sch
│ ├── dtd
│ │ ├── aggregate.dtd
│ │ ├── baseelements.dtd
│ │ ├── basetype.dtd
│ │ ├── cast.dtd
│ │ ├── collation.dtd
│ │ ├── column.dtd
│ │ ├── constraint.dtd
│ │ ├── conversion.dtd
│ │ ├── customidxs.dtd
│ │ ├── database.dtd
│ │ ├── dbmodel.dtd
│ │ ├── domain.dtd
│ │ ├── element.dtd
│ │ ├── eventtrigger.dtd
│ │ ├── extension.dtd
│ │ ├── foreigndatawrapper.dtd
│ │ ├── foreignserver.dtd
│ │ ├── foreigntable.dtd
│ │ ├── function.dtd
│ │ ├── genericsql.dtd
│ │ ├── index.dtd
│ │ ├── label.dtd
│ │ ├── language.dtd
│ │ ├── metadata.dtd
│ │ ├── object.dtd
│ │ ├── opclass.dtd
│ │ ├── operator.dtd
│ │ ├── opfamily.dtd
│ │ ├── permission.dtd
│ │ ├── policy.dtd
│ │ ├── relationship.dtd
│ │ ├── role.dtd
│ │ ├── rule.dtd
│ │ ├── schema.dtd
│ │ ├── sequence.dtd
│ │ ├── table.dtd
│ │ ├── tablespace.dtd
│ │ ├── tag.dtd
│ │ ├── textbox.dtd
│ │ ├── trigger.dtd
│ │ ├── usermapping.dtd
│ │ ├── usertype.dtd
│ │ └── view.dtd
│ ├── element.sch
│ ├── eventtrigger.sch
│ ├── excelement.sch
│ ├── extension.sch
│ ├── foreigndatawrapper.sch
│ ├── foreignserver.sch
│ ├── foreigntable.sch
│ ├── function.sch
│ ├── genericsql.sch
│ ├── idxelement.sch
│ ├── index.sch
│ ├── info.sch
│ ├── label.sch
│ ├── language.sch
│ ├── metadata.sch
│ ├── object.sch
│ ├── opclass.sch
│ ├── operator.sch
│ ├── opfamily.sch
│ ├── parameter.sch
│ ├── partitionkey.sch
│ ├── permission.sch
│ ├── policy.sch
│ ├── position.sch
│ ├── prependedsql.sch
│ ├── reference.sch
│ ├── reftable.sch
│ ├── relationship.sch
│ ├── role.sch
│ ├── rule.sch
│ ├── schema.sch
│ ├── sequence.sch
│ ├── style.sch
│ ├── table.sch
│ ├── tablespace.sch
│ ├── tag.sch
│ ├── textbox.sch
│ ├── trigger.sch
│ ├── typeattribute.sch
│ ├── usermapping.sch
│ ├── usertype.sch
│ └── view.sch
├── styles
│ └── qwindowsvistastyle.dll
├── translations
│ ├── qt_ar.qm
│ ├── qt_bg.qm
│ ├── qt_ca.qm
│ ├── qt_cs.qm
│ ├── qt_da.qm
│ ├── qt_de.qm
│ ├── qt_en.qm
│ ├── qt_es.qm
│ ├── qt_fi.qm
│ ├── qt_fr.qm
│ ├── qt_gd.qm
│ ├── qt_he.qm
│ ├── qt_hu.qm
│ ├── qt_it.qm
│ ├── qt_ja.qm
│ ├── qt_ko.qm
│ ├── qt_lv.qm
│ ├── qt_pl.qm
│ ├── qt_ru.qm
│ ├── qt_sk.qm
│ ├── qt_uk.qm
│ └── qt_zh_TW.qm
├── utils.dll
└── zlib1.dll
34 directories, 400 files
标签:
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)