1 # -*- coding: utf-8 -*-
2 # -----------------------------------------------------------------------------
3 # Copyright © 2009- The Spyder Development Team
5 # Licensed under the terms of the MIT License
6 # (see LICENSE.txt for details)
7 # -----------------------------------------------------------------------------
8 """Provides QtSql classes and functions."""
11 from . import PYQT5
, PYSIDE2
, PYQT4
, PYSIDE
, PythonQtError
14 from PyQt5
.QtSql
import *
16 from PySide2
.QtSql
import *
18 from PyQt4
.QtSql
import *
20 from PySide
.QtSql
import *
22 raise PythonQtError('No Qt bindings could be found')
24 del PYQT4
, PYQT5
, PYSIDE
, PYSIDE2