I want the following line of code to work in Eclipse Java but apparently I need to import/add mysql-connector-java-5.1.26 to my eclipse android project so I can send a mySQL query via an android device.
Class.forName("com.mysql.jdbc.Driver");
How can I add the mySQL library to a current project? I've seen other tutorials about doing this here at stack overflow but they've been kind of unspecific and just say "just ADD it to your current project" but that's where I'm stumped.
Most tutorials online just tell you how to start a new project from scratch, but I'm working with an android application.
Do I go to File>Import? and then select the .zip with the mySQL files? Or do I select the folder or something? I'm doing this on a Mac.
Thanks.