Import MS-Access data file to make the searchable page

I assume you want your WP site to be able to search this Access Database?

If so, then you would need to get your access database data into the WP database.

Multiple ways to accomplish this:

  1. ACF. You can use Advanced Custom Fields. Setup custom fields for your Books data and enter you data. You did not say how large your data is so this might not be a good option if you have a lot of data.

  2. create a custom WP database table. create the table based on your Access database. You can convert your Access database into a CSV file and then upload to your custom DB table. Now you can create a custom page template, will need to write custom code for this custom page template to search this new database table and return results on this page.

  3. If you want this Books data to be searchable throughout the WordPress site then you can import your Books data as WordPress data such as a Custom Post Type. Once you setup your new Books CPT and get your Books data into the WP database tables, then the Books data will be searchable throughout the website.