linjunhalida
linjunhalida

Reputation: 4655

Are there any PyQt sqlite browser/manager?

I'm developing a program using PyQt4 and sqlite,

I want to include a small sqlite browser/editor/manager, just like sqliteman or sqlitebrowser,

are there any one written by pyqt?

Upvotes: 5

Views: 1323

Answers (2)

iraj jelodari
iraj jelodari

Reputation: 3356

The Eric Python IDE has a sql browser. It is open source and it's been written by pyqt.

Upvotes: 1

David Boddie
David Boddie

Reputation: 26

You might want to take a look at the C++ SQL Browser demo shipped with Qt, and perhaps port it to Python.

Upvotes: 1

Related Questions