Giter Club home page Giter Club logo

attendance-manager's Introduction

Attendance Manager

Attendance Manager is a Desktop application built with Qt Framework for C++ to manage the attendance of the class.

Functionalities :

  • Marking the attendance (Core)
  • Updating particular student's attendance status
  • Save monthly report of attendance as excel sheet
  • All the data is stored on mysql database

Installation

Download the installer for windows to install Attendance Manager.

Additional Libraries Used

QXlsx - QXlsx is excel file(*.xlsx) reader/writer library.

QXlsx comes under MIT licence.

Getting Started with this Project

Prerequisites

Qt Studio (Qt C++)

Importing

  1. Clone this repo
git clone https://github.com/Nitesh-13/Attendance-Manager.git
  1. Open the folder and double click AttendanceManagement.pro

  2. Add your mysql database credentials to dblogin.cpp

// mysql credentials for SE database
bool dblogin::connectSE()
{
    loginSE = QSqlDatabase::addDatabase("QMYSQL");
    loginSE.setHostName("localhost"); // remote mysql host here
    loginSE.setUserName("");          // mysql username here
    loginSE.setPassword("");          // mysql password here
    loginSE.setDatabaseName("");      // database name here
    if (loginSE.open())
    {
        return true;
    }
    else
    {
        return false;
    }
}

// mysql credentials for TE database
bool dblogin::connectTE()
{
    loginTE = QSqlDatabase::addDatabase("QMYSQL");
    loginTE.setHostName("localhost"); // remote mysql host here
    loginTE.setUserName("");          // mysql username here
    loginTE.setPassword("");          // mysql password here
    loginTE.setDatabaseName("");      // database name here
    if (loginTE.open())
    {
        return true;
    }
    else
    {
        return false;
    }
}

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

attendance-manager's People

Contributors

nitesh-1306 avatar

Stargazers

Prathamesh Amundkar avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.