We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improv开发者_Python百科e this questionAre 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.
Joachim is correct.
However, there are some issues left for vendor-specific implementation (for example, does Connection.close()
while a transaction is open commits or rollback).
In such cases you can check out the MySQL JDBC API Implementation Notes or look at the Java docs and source in the MySQL source code
精彩评论