| |
|
| java.lang.Object org.xorm.tools.JdbcDriverFinder
JdbcDriverFinder | public class JdbcDriverFinder (Code) | | Utility for finding JDBC driver classes in JAR files
author: Dan Checkoway |
JdbcDriverFinder | public JdbcDriverFinder()(Code) | | Create a JdbcDriverFinder
|
chooseJarFile | public static File chooseJarFile()(Code) | | |
displayJdbcDriversInFile | public static void displayJdbcDriversInFile(File jarFile) throws IOException(Code) | | |
findJdbcDrivers | public Collection findJdbcDrivers() throws IOException(Code) | | Find JDBC driver classes by browsing for JAR files
a Collection of matching class objects, or an emptyCollection if no driver classes are found |
findJdbcDrivers | public Collection findJdbcDrivers(String jarFileName) throws IOException(Code) | | Find JDBC driver classes within a JAR file
Parameters: jarFileName - the name/path of the JAR file to examine a Collection of matching class objects, or an emptyCollection if no driver classes are found |
findJdbcDrivers | public Collection findJdbcDrivers(File jarFile) throws IOException(Code) | | Find JDBC driver classes within a JAR file
Parameters: jarFile - the JAR file to examine a Collection of matching class objects, or an emptyCollection if no driver classes are found |
findJdbcDrivers | public Collection findJdbcDrivers(InputStream inputStream) throws IOException(Code) | | Find JDBC driver classes within a JAR file
Parameters: inputStream - an input stream with the JAR content to examine a Collection of matching class objects, or an emptyCollection if no driver classes are found |
|
|
|