Coder Social home page Coder Social logo

timetable's Introduction

timeTable

timeTable is a desktop application for automatic generate timetables.

Watch the demonstration on youTube: timtable

libs

For the functioning of the application, it requires that some libraries are integrated in the project. So, you have to integrate the libraries that are in the /libs folder in your project. Note that this project is designed with JDK 1.8.

configuration & database

The project needs to be connected to a database to work, so we used MYSQL. You must first import the .sql file in the /bd folder into your database server.

Then you will modify YOUR PASSWORD in the file AvoirConnection.java at the root src/cm/supptic/avoirConnection by your own password to connect to the server. Leave a blank field if you don't have a password.

   public class AvoirConnection {

    public Connection getConnnection() throws SQLException, ClassNotFoundException {

        Connection myConne = null;
        Class.forName("com.mysql.jdbc.Driver");
        myConne = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/supptic", "root", "YOUR PASSWORD");
        System.out.println("Connecté !");

        return myConne;
    }
}

login

Once you have launched the application you must log to manage.

Default id: oreol Default password: oreol

administrator

Some administrator side features

Teachers list

View teacher infos

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.