QGIS - 在 Qtreeview 中列出数据库表
我正在使用 QGIS 的 python 插件。我使用psycopg2进行了python到postgres的连接。 我从数据库检索表的查询是:
cursor = self.con.cursor()
cursor.execute("SELECT table_name FROM information_schema.tables WHERE table_schema = 'public'")
records = cursor.fetchall()
record 变量包含所有表。我的 .ui 表单上有一个 QTreeView 组件。 如何将记录变量中的所有表显示到 QTreeView 中。我们应该使用 QAbstractItemModel。但不知道如何去做。
I am working with python plugins for QGIS. I did python to postgres connection using psycopg2.
My query to retrieve tables from database is :
cursor = self.con.cursor()
cursor.execute("SELECT table_name FROM information_schema.tables WHERE table_schema = 'public'")
records = cursor.fetchall()
record variable has all the tables.I have one QTreeView component on my .ui form.
How to display all the tables from record variable into QTreeView .We should use QAbstractItemModel.But dont know how to go about it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 QTreeWidget 中是否有顶级项目(您可以使用 Qt 4 Designer 添加它)?在这种情况下,您可以简单地使用 .child().setText() 添加您的条目:
num_layers = dlg.ui.treeWidget.topLevelItem(item).childCount()
QtGui.QTreeWidgetItem(dlg.ui.treeWidget.topLevelItem(item))
dlg.ui.treeWidget.topLevelItem(item).child(num_layers).setText(0, 名称)
http://gHydraulic.git.sourceforge.net/git/gitweb.cgi?p=gHydraulic/gHydraulic;a=blob;f=gHydraulicsplugin.py;h=19d44b2c65b1af6cd0b26c05b7e6606ed05b1965;hb=HEAD
包含完整的示例。
如果您想将元素添加为顶级元素,可以使用 QTreeWidget::addTopLevelItem() 来插入它们
http://developer.qt.nokia.com/doc/qt-4.8/qtreewidget.html#addTopLevelItem
您使用哪个 Qt 版本?
Do you have a top level item in your QTreeWidget (you could add it using Qt 4 Designer)? In that case you could simply use .child().setText() to add your entries:
num_layers = dlg.ui.treeWidget.topLevelItem(item).childCount()
QtGui.QTreeWidgetItem(dlg.ui.treeWidget.topLevelItem(item))
dlg.ui.treeWidget.topLevelItem(item).child(num_layers).setText(0, name)
http://ghydraulic.git.sourceforge.net/git/gitweb.cgi?p=ghydraulic/ghydraulic;a=blob;f=ghydraulicsplugin.py;h=19d44b2c65b1af6cd0b26c05b7e6606ed05b1965;hb=HEAD
contains the full example.
In case you would like to add your elements as top level elements, you could use QTreeWidget::addTopLevelItem() to insert them
http://developer.qt.nokia.com/doc/qt-4.8/qtreewidget.html#addTopLevelItem
Which Qt version do you use?