-------------------------------------------REPORT CARD----------------------------------

In this project we create a new note and do some operations like edit and delete the note.


Requirements:
------------

1. Code Blocks
2. XAMPP
3. Dev c++

4. Mysql.zip which will be provided


STEPS:
------

STEP 1: Install all of the above 4 applications and files.

STEP 2: Extract the files in Mysql.zip open mysqlheaders->mysqlheaders->copy all
	Goto C:\Program Files (x86)\Dev-Cpp\MinGW64\include and paste

STEP 3: Goto libmysql.a Copy file and paste in C:\Program Files (x86)\Dev-Cpp\MinGW64\lib

STEP 4: Open Code Blocks and Create a Project as Console Application and open main.cpp in Management Bar(present at left side of the window).

STEP 5: Before Execution of the file goto projects->build options->linker settings and add libmysql.a 
	from devcpp folder and next goto search directories and add includes folder
	(C:\Program Files (x86)\Dev-Cpp\MinGW64\include) and Press OK.

STEP 6: While running the file if you get an error add (Mysql->libmysql.dll->libmysql.dll) in to the project folder.

STEP 7: Now Build and Run The File.


XAMPP:
------
In XAMPP Create a new user account with details as follows:
username: user
password: pass

      AND 

Create Table 'report' with database name as 'reportmgmt'


CREATE TABLE 'reportmgmt'.'report' (
 'roll' INT NOT NULL AUTO_INCREMENT ,
 'name' VARCHAR(200) NOT NULL ,
 'maths' INT NOT NULL ,
 'phy' INT NOT NULL ,
 'chem' INT NOT NULL ,
 'avrg' INT NOT NULL ,
 'grade' VARCHAR(10) NOT NULL ,
 PRIMARY KEY ('roll')) ENGINE = InnoDB;


To Run Project in CodeBlocks

Press ctrl + O and open notes of type project.

NOTE:- Prepare the Backend before executing the project.