import wx
import sqlite3 as lite
class MyFrame(wx.Frame):
def __init__(self, parent, id, title):
wx.Frame.__init__(self, parent, id, title, wx.DefaultPosition, wx.Size(450, 350))
vbox = wx.BoxSizer(wx.VERTICAL)
self.tree = wx.TreeCtrl( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.TR_DEFAULT_STYLE|wx.TR_HIDE_ROOT )
self.root = self.tree.AddRoot('Noktalar')
vbox.Add(self.tree, 1, wx.EXPAND)
con = lite.connect('noktalar.sdb')
#cur = con.cursor() #removed
cur2 = con.cursor() #added
gruplar=cur.execute("select * from gruplar")
for grup in gruplar:
parentItem = self.tree.AppendItem(self.root, grup[1])
deyim="""select * from noktalar where noktalar.grup_id="""+str(grup[0])
#noktalar=cur.execute(deyim) #removed
noktalar=cur2.execute(deyim) #added
for nokta in noktalar:
self.tree.AppendItem(parentItem, nokta[1])
con.commit()
cur.close()
cur2.close() #added
con.close()
self.SetSizer(vbox)
self.Centre()
class MyApp(wx.App):
def OnInit(self):
frame = MyFrame(None, -1, 'treectrl.py')
frame.Show(True)
self.SetTopWindow(frame)
return True
您好,
我需要从1toN数据库构建一个treectrl。但只运行一次迭代。 我的意思是控件和子项中只有一个父项。 为什么它不构建其他父项,即使它们存在于数据库中?
提前致谢。
解决:
我为“noktalar”添加了另一个光标。
答案 0 :(得分:0)
你确定gruplar和noktalar变量是可迭代的吗?添加一些行来打印它们并确保你在迭代某些东西。否则,代码看起来对我来说。