I have a database instance on the Google Cloud SQL server. I want to query this database now through an Android app. I saw no option other than using a JDBC driver, as the Cloud SQL API's provided by Google don't have provisions for executing queries on the database.
The problem now is, to connect to the Cloud SQL database instance, I need this driver:
Class.forName("com.mysql.jdbc.GoogleDriver");
But when I run the app, the class is not found. Using Driver instead of GoogleDriver is of no use, as I am unable to connect to the remote instance (obviously). How do I access this database instance in my Android app now?