├── GUI_Main.py ├── LICENSE ├── README.md ├── images ├── MainWindow_1.png └── search.png ├── lib ├── Account.py ├── AdminHome.py ├── BookManagement.py ├── BookStorageViewer.py ├── BookStorageViewer.py.bak ├── BorrowStatusViewer.py ├── BorrowStatusViewer.py.bak ├── ReaderManagement.py ├── ReaderManagementPanel.py ├── ReaderTypeManagement.py ├── SQLQuery.py ├── SignIn.py ├── StudentHome.py ├── UserListViewer.py ├── UserListViewer.py.bak ├── UserManage.py ├── __pycache__ │ ├── Account.cpython-37.pyc │ ├── AdminHome.cpython-37.pyc │ ├── BookManagement.cpython-37.pyc │ ├── BookStorageViewer.cpython-37.pyc │ ├── BorrowStatusViewer.cpython-37.pyc │ ├── ReaderManagement.cpython-37.pyc │ ├── ReaderManagementPanel.cpython-37.pyc │ ├── SQLQuery.cpython-37.pyc │ ├── SignIn.cpython-37.pyc │ ├── StudentHome.cpython-37.pyc │ ├── UserListViewer.cpython-37.pyc │ ├── UserManage.cpython-37.pyc │ ├── __init__.cpython-37.pyc │ ├── addBookDialog.cpython-37.pyc │ ├── addLibraryCard.cpython-37.pyc │ ├── borrowBookDialog.cpython-37.pyc │ ├── changePasswordDialog.cpython-37.pyc │ ├── destoryLibraryCard.cpython-37.pyc │ ├── dropBookDialog.cpython-37.pyc │ ├── editLibraryCard.cpython-37.pyc │ └── returnBookDialog.cpython-37.pyc ├── addBookDialog.py ├── addLibraryCard.py ├── borrowBookDialog.py ├── changePasswordDialog.py ├── destoryLibraryCard.py ├── dropBookDialog.py ├── editLibraryCard.py ├── requiremen.txt └── returnBookDialog.py └── sql ├── LibraryDB__Init__.sql ├── LibraryTableData.sql └── 向TB_Book表录入垃圾数据.sql /GUI_Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/GUI_Main.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/README.md -------------------------------------------------------------------------------- /images/MainWindow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/images/MainWindow_1.png -------------------------------------------------------------------------------- /images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/images/search.png -------------------------------------------------------------------------------- /lib/Account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/Account.py -------------------------------------------------------------------------------- /lib/AdminHome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/AdminHome.py -------------------------------------------------------------------------------- /lib/BookManagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/BookManagement.py -------------------------------------------------------------------------------- /lib/BookStorageViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/BookStorageViewer.py -------------------------------------------------------------------------------- /lib/BookStorageViewer.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/BookStorageViewer.py.bak -------------------------------------------------------------------------------- /lib/BorrowStatusViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/BorrowStatusViewer.py -------------------------------------------------------------------------------- /lib/BorrowStatusViewer.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/BorrowStatusViewer.py.bak -------------------------------------------------------------------------------- /lib/ReaderManagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/ReaderManagement.py -------------------------------------------------------------------------------- /lib/ReaderManagementPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/ReaderManagementPanel.py -------------------------------------------------------------------------------- /lib/ReaderTypeManagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/ReaderTypeManagement.py -------------------------------------------------------------------------------- /lib/SQLQuery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/SQLQuery.py -------------------------------------------------------------------------------- /lib/SignIn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/SignIn.py -------------------------------------------------------------------------------- /lib/StudentHome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/StudentHome.py -------------------------------------------------------------------------------- /lib/UserListViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/UserListViewer.py -------------------------------------------------------------------------------- /lib/UserListViewer.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/UserListViewer.py.bak -------------------------------------------------------------------------------- /lib/UserManage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/UserManage.py -------------------------------------------------------------------------------- /lib/__pycache__/Account.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/Account.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/AdminHome.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/AdminHome.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/BookManagement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/BookManagement.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/BookStorageViewer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/BookStorageViewer.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/BorrowStatusViewer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/BorrowStatusViewer.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/ReaderManagement.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/ReaderManagement.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/ReaderManagementPanel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/ReaderManagementPanel.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/SQLQuery.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/SQLQuery.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/SignIn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/SignIn.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/StudentHome.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/StudentHome.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/UserListViewer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/UserListViewer.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/UserManage.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/UserManage.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/addBookDialog.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/addBookDialog.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/addLibraryCard.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/addLibraryCard.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/borrowBookDialog.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/borrowBookDialog.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/changePasswordDialog.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/changePasswordDialog.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/destoryLibraryCard.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/destoryLibraryCard.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/dropBookDialog.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/dropBookDialog.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/editLibraryCard.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/editLibraryCard.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/returnBookDialog.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/__pycache__/returnBookDialog.cpython-37.pyc -------------------------------------------------------------------------------- /lib/addBookDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/addBookDialog.py -------------------------------------------------------------------------------- /lib/addLibraryCard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/addLibraryCard.py -------------------------------------------------------------------------------- /lib/borrowBookDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/borrowBookDialog.py -------------------------------------------------------------------------------- /lib/changePasswordDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/changePasswordDialog.py -------------------------------------------------------------------------------- /lib/destoryLibraryCard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/destoryLibraryCard.py -------------------------------------------------------------------------------- /lib/dropBookDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/dropBookDialog.py -------------------------------------------------------------------------------- /lib/editLibraryCard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/editLibraryCard.py -------------------------------------------------------------------------------- /lib/requiremen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/requiremen.txt -------------------------------------------------------------------------------- /lib/returnBookDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/lib/returnBookDialog.py -------------------------------------------------------------------------------- /sql/LibraryDB__Init__.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/sql/LibraryDB__Init__.sql -------------------------------------------------------------------------------- /sql/LibraryTableData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/sql/LibraryTableData.sql -------------------------------------------------------------------------------- /sql/向TB_Book表录入垃圾数据.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songdaoyuan/PyQtSQLServerLibrary/HEAD/sql/向TB_Book表录入垃圾数据.sql --------------------------------------------------------------------------------