├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── config.ini ├── qt-sql-example.pro ├── res ├── database.ico ├── failure.ico ├── icons.qrc ├── readme.txt └── success.ico ├── screenshot.png └── src ├── db_controller.cpp ├── db_controller.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [andre-wojtowicz] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/config.ini -------------------------------------------------------------------------------- /qt-sql-example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/qt-sql-example.pro -------------------------------------------------------------------------------- /res/database.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/res/database.ico -------------------------------------------------------------------------------- /res/failure.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/res/failure.ico -------------------------------------------------------------------------------- /res/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/res/icons.qrc -------------------------------------------------------------------------------- /res/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/res/readme.txt -------------------------------------------------------------------------------- /res/success.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/res/success.ico -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/db_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/src/db_controller.cpp -------------------------------------------------------------------------------- /src/db_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/src/db_controller.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre-wojtowicz/qt-sql-example/HEAD/src/mainwindow.ui --------------------------------------------------------------------------------