GitXplorerGitXplorer
H

ASSIST

public
0 stars
0 forks
7 issues

Commits

List of commits on branch master.
Verified
ad3c3fd88af8370edcad9e1669fda68204181491

Merge pull request #4 from Harushii18/database_connection

HHarushii18 committed 4 years ago
Unverified
d17e888691ae1fecc749ad5b785e63c75decd312

Deleted unnecessary class. Still need to make many changes to the database, but I want to push this working DB connection.

HHarushii18 committed 4 years ago
Verified
4a41b78c883d7d541f8067d371f2b127eef17641

Updated the read me

HHarushii18 committed 4 years ago
Verified
d53892869f80668dbd47559ec91108f40d766464

Update README.md

HHarushii18 committed 4 years ago
Verified
d9f23731744a6e0caf9a1f7d6b5673f2a608a93e

Update README.md

HHarushii18 committed 4 years ago
Verified
73793a25e100438fb5552ebe1ddf1aafdc2e982e

Update README.md

HHarushii18 committed 4 years ago

README

The README file for this repository.

ASSIST APP documentation

1. What the app will do

  • [ ] Insert new tutor records
  • [ ] Update tutor information
  • [ ] Allow tutors to log in remotely and create an account
  • [ ] Delete tutor records
  • [ ] Insert new student records
  • [ ] Update student information
  • [ ] Delete student records
  • [ ] Assign tutors to students
  • [ ] Create a pdf printout of the assignment
  • [ ] Look up assigned students and tutors
  • [ ] Login
  • [ ] Insert new director
  • [ ] Add new subjects
  • [ ] Delete/ remove subjects
  • [ ] Check up on existing curriculum

2. Database layouts

  • tblTutor (tutorID, tutorFirstName, tutorLastName, tutorPhoneNo, tutorEmail, tutorDegree, tutorUniversity, tutorJoinDate, tutorLeaveDate, tutorNote)
  • tblTutorSubject (tutorID, tutorSubject, tutorNumberTutoring)
  • tblSubject(subjectID, subjectName, subjectGrade, subjectTutorCount, subjectStudentCount)
  • tblStudent(studentID, studentFirstName, studentLastName, studentPhoneNo, studentSchool, studentGrade)
  • tblStudentSubject (studentID, studentSubject)
  • tblAssignment (tutorID, studentID)
  • tblDirector (directorID, directorTitle, directorFirstName, directorLastName, directorPhoneNo, directorEmail, directorDegree, directorUniversity, directorJoinDate, directorLeaveDate, directorNote)
  • tblSubjectContent (subjectID, subjectGrade, subjectTopic, subjectWeek, subjectComplete)

On another note:

Don't have too many expectations of me! Coding can be difficult!