Uses of Class
velosurf.sql.DriverInfo

Packages that use DriverInfo
velosurf.sql Contains all core classes dealing with the database itself. 
 

Uses of DriverInfo in velosurf.sql
 

Fields in velosurf.sql declared as DriverInfo
private  DriverInfo ConnectionWrapper.driver
          Infos on the driver.
private  DriverInfo ConnectionPool.driver
          infos on the driver
private  DriverInfo ReverseEngineer.driverInfo
          Driver infos.
private  DriverInfo Database.driverInfo
          Driver infos (database vendor specific).
 

Fields in velosurf.sql with type parameters of type DriverInfo
private static java.util.Map<java.lang.String,DriverInfo> DriverInfo.driverByClass
          map driver class -> driver infos.
private static java.util.Map<java.lang.String,DriverInfo> DriverInfo.driverByVendor
          map jdbctag -> driver infos.
 

Methods in velosurf.sql that return DriverInfo
 DriverInfo Database.getDriverInfo()
          Get database driver infos.
static DriverInfo DriverInfo.getDriverInfo(java.lang.String url, java.lang.String driverClass)
          Get a driver info by url and driver class.
 

Methods in velosurf.sql with parameters of type DriverInfo
protected  void ReverseEngineer.setDriverInfo(DriverInfo di)
          Driver infos setter.
 

Constructors in velosurf.sql with parameters of type DriverInfo
ConnectionPool(java.lang.String url, java.lang.String user, java.lang.String password, java.lang.String schema, DriverInfo driver, boolean autocommit, int min, int max)
          Constructor.
ConnectionWrapper(DriverInfo driver, java.sql.Connection connection)
          Constructor.
 



~ooOoo~