How to use MySQL attendance database?

Asked By 50 points N/A Posted on -
qa-featured

Hello experts,

How to use MySQL attendance database? I am using java programming language, I hope you can share with me on how to connect my attendance system to MySQL database. Share with me your suggestions and advice regarding this issue, thank you.

SHARE
Best Answer by Goram Ian
Answered By 10 points N/A #182840

How to use MySQL attendance database?

qa-featured

Hi Shannon,

I hope you are doing well. You can connect your database by following these setups.

1. Download MySQL database connector

2. Create a folder with the name “lib”

3. Place downloaded file in this folder

4. Add jdbc driver in your class path

5. Load driver

  • Class.forName(“com.mysql.jdbc.Driver”);

6. Get connection by calling this statement

  • DriverManager.getConnection("jdbc:mysql://localhost/Attendance?user=abc&password=abc");

I hope this will helps you. Thank you

Best Answer
Best Answer
Answered By 60 points N/A #182841

How to use MySQL attendance database?

qa-featured

Hi Shannon Larry,

 

I have seen a lot of possible solutions and answers with your concern. In regards with codes I do prefer for you to go in different forums and join the discussion so that you can gather a lot of information. I have attached some links of good forums so that you can have reference:

Database Journal: attendance Report Using Mysql

You can also check the posts in this site:

Coding Forums: Fetching values from MySql Database

Server Fault: MySQL servers for an attendance system

Thanks.

Related Questions