Are there javadocs available for MySQL JDBC connector? If so, where can I find them?
Googling around, I've come across links such as Class MysqlDataSource . But it is that official? I guess I'm looking for something that came from mysql.com or affiliates. Is there such thing?
The official documentation of Connector/J is here. It does not, as far as I know, contain any JavaDoc. The reason for this is that you should not need to directly refer to any of those classes. You should be able to use only the java.sql.*
classes to access the DB.