Student Management System Project in Python Mysql

This tutorial will teach you  to make the Student Management System Project step by step. The following  system will use to manage the Student Management. User Login import mysql.connector from tkinter import * from tkinter import messagebox from subprocess import call def Ok(): mysqldb = mysql.connector.connect(host=”localhost”, user=”root”, password=””, database=”studentmanagement”) mycursor = mysqldb.cursor() uname = e1.get()

Student Management System Project in Python Mysql Read More »

Employee Leave Management System using Java Mysql

This tutorial will teach how to make the Employee Leave Management System using Java Mysql.this system will help you to manage the employee details and leave details. This is the Main Form of the Project [adToAppearHere] private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { EmployeeLeave el = new EmployeeLeave(); el.setVisible(true); } private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) { leave l

Employee Leave Management System using Java Mysql Read More »