Can someone please help me to setup the Database for my Attendance application
It'll help me a lot please :((
admin
12344
Can someone please help me to setup the Database for my Attendance application
It'll help me a lot please :((
admin
12344
More information required.
Google drive file requires access permission.
Public already
Having conflict between the database values
Nope, requires a google account sign in to access.
Why not upload project here, or is it too big?
Smart_Attendance_copy.aia (2.8 MB)
Your Screen1 image and background were causing AI2 errors. Delete them and their image files to avoid thise.
Here is a sample app for you to study, showing how to store data in TinyDB using compound tags.
For your app, think of each match as a day's attendance log for a single class.
You will need the Clock component from the Sensors drawer to handle dates.
On further thought, here is a sample abstract data model you can use to design your physical implementation in whatever database you like.
This is for a multi-teacher multi-course system covering multiple school terms.
The data model consists of tables, with keys for uniqueness, and dependent values.
If a table has multiple keys, JOIN them with '|' for a tag/value key.
If a table has multiple dependent values, assign different Namespaces or dictionary attributes to them.
The first few tables can be used to feed List Pickers for filling the subsequent tables at enrollment time and class attendance time.
School Schedule
Courses
Student Enrollment
Course Enrollment
Attendance
If using TinyDB, the NameSpace can be used to keep tables separate from each other.