src/eric7/SqlBrowser/SqlConnectionWidget.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9221
bf71ee032bb4
child 9653
e67609152c5e
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
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 PyQt6.QtCore import pyqtSignal, Qt 10 from PyQt6.QtCore import Qt, pyqtSignal
11 from PyQt6.QtGui import QAction 11 from PyQt6.QtGui import QAction
12 from PyQt6.QtSql import QSqlDatabase
12 from PyQt6.QtWidgets import ( 13 from PyQt6.QtWidgets import (
13 QWidget,
14 QHeaderView, 14 QHeaderView,
15 QTreeWidget, 15 QTreeWidget,
16 QTreeWidgetItem,
16 QVBoxLayout, 17 QVBoxLayout,
17 QTreeWidgetItem, 18 QWidget,
18 ) 19 )
19 from PyQt6.QtSql import QSqlDatabase
20 20
21 21
22 class SqlConnectionWidget(QWidget): 22 class SqlConnectionWidget(QWidget):
23 """ 23 """
24 Class implementing a widget showing the SQL connections. 24 Class implementing a widget showing the SQL connections.

eric ide

mercurial