Python Tkinter 中怎么使用 数据库

Python Tkinter 中怎么使用 数据库,第1张

Tkinter居然没有这种组件,所以就只能模拟了

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

#!

/usr/bin/python

#

--

coding:

utf8

--

from

Tkinter

import

class

Select(Frame):

def

__init__(self,

master=None):

Frame__init__(self,

master)

selflabel

=

Label(self,

text="选择项目")

selflistBox

=

Listbox(self,

height=1)

selfbutton

=

Button(self,

text='V',

command=selftriggle)

selfhideList

=

True

for

i

in

xrange(10):

selflistBoxinsert(i,

'Item%d'%i)

selflabelgrid(row=0,

column=0,

sticky=N)

selflistBoxgrid(row=0,

column=1,

sticky=N)

selfbuttongrid(row=0,

column=2,

sticky=N)

selfgrid()

def

triggle(self):

selfhideList

^=

1

selflistBoxconfig(height=[selflistBoxsize(),

1][selfhideList])

app

=

Select()

appmainloop()

仅供参考。

最近有个需求,在web端创建多种类型的数据源,会给出连接链接和连接账号密码。然后需要测试数据源是否可连接,给出的账号能否进行增删改查等 *** 作。目前支持的数据源有mongodb、redis、es、ck、sqlserver、postgresql。

以上就是关于Python Tkinter 中怎么使用 数据库全部的内容,包括:Python Tkinter 中怎么使用 数据库、python *** 作多种数据源、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10129972.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存