eric7/SqlBrowser/SqlConnectionWidget.py

branch
eric7
changeset 8318
962bce857696
parent 8312
800c432b34c8
child 8881
54e42bc2437a
equal deleted inserted replaced
8316:0c7a44af84bc 8318:962bce857696
5 5
6 """ 6 """
7 Module implementing a widget showing the SQL connections. 7 Module implementing a widget showing the SQL connections.
8 """ 8 """
9 9
10 from PyQt5.QtCore import pyqtSignal, Qt 10 from PyQt6.QtCore import pyqtSignal, Qt
11 from PyQt5.QtWidgets import ( 11 from PyQt6.QtGui import QAction
12 QWidget, QHeaderView, QTreeWidget, QVBoxLayout, QTreeWidgetItem, QAction 12 from PyQt6.QtWidgets import (
13 QWidget, QHeaderView, QTreeWidget, QVBoxLayout, QTreeWidgetItem
13 ) 14 )
14 from PyQt5.QtSql import QSqlDatabase 15 from PyQt6.QtSql import QSqlDatabase
15 16
16 17
17 class SqlConnectionWidget(QWidget): 18 class SqlConnectionWidget(QWidget):
18 """ 19 """
19 Class implementing a widget showing the SQL connections. 20 Class implementing a widget showing the SQL connections.

eric ide

mercurial