Connecting MS Access database to arduino

Hello,

I am creating an RFID attendance system using Arduino UNO and MFRC522 module. I want to create a database that stores the details of the students in a class and when they scan their card upon entering a class it checks it with the database and marks that student present with the date and time that they scan in.

Is it possible to connect a database created in MS Access to the Arduino to store this data and if so how?

Is there any other software to create a database for this function available?

Thank you

Is it possible to connect a database created in MS Access to the Arduino to store this data and if so how?

Maybe. The Arduino will make a GET request, to execute some script on some server with some data (the server is not part of the GET request, but the Arduino has already connected to the server). If you provide some program that can, as the user running the httpd daemon, write to the Access database, then the answer is yes.

Access is pretty old technology, and no longer well supported.

PHP and MySQL, parts of the LAMP or WAMP stack, make creating a relational database, and scripts to read from/write to the database, pretty easy. And, of course, the web server software is the A part of the LAMP or WAMP stack, so that's easy to use, too.