what about jdb and javadoc by example ?



what about jdb and javadoc by example ?..

Answer / Shabnam Kumari

JDB (Java Database Connectivity) is a Java API used for connecting the application with databases. Javadoc is a tool that extracts comments from the source code, organizes them into various topics, and generates HTML pages to help developers understand the functionality of the code.nExample:
```
/**
* This method connects to the database.
* @param url Database URL
* @param user Database username
* @param password Database password
* @return Connection object representing the connection to the database
*/
public Connection getConnection(String url, String user, String password) {
// implementation
}
```

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Java Related AllOther Interview Questions

What is setstring method in java?

1 Answers  


what are the steps in JDBC connectivity..???

1 Answers   IBM, SoftCom, TCS,


What can open a jar file?

1 Answers  


What is jep in java?

1 Answers  


What is @qualifier in java?

1 Answers  


What is meant by rest api in java?

1 Answers  


Is jvm a compiler or an interpreter?

1 Answers  


What is difference between loosely coupled and tightly coupled in java?

1 Answers  


Do I really have to type in the programs in the book to try them out?

1 Answers  


In java thread programming, which method is a must implementation for all threads?

1 Answers  


What is a driver in java?

1 Answers  


What is flatmap java?

1 Answers  


Categories