Uses of Class
fc.jdbc.DBName

Packages that use DBName
fc.jdbc   
 

Uses of DBName in fc.jdbc
 

Fields in fc.jdbc declared as DBName
static DBName DBName.mysql
           
static DBName DBName.oracle
           
static DBName DBName.postgres
           
 

Methods in fc.jdbc that return DBName
static DBName DBName.fromDriver(java.lang.String driver_name)
          Returns the DBName corresponding to the specified jdbc driver or null if the jdbc driver could not be parsed.
 DBName ConnectionMgr.getDBName()
          Returns the dbname corresponding that the database connected to by this connection manager.
static DBName QueryUtil.getDBName(java.sql.Connection con)
          Returns the dbname corresponding that the database for the specified jdbc connection.
 

Methods in fc.jdbc with parameters of type DBName
static long QueryUtil.getLastInsertID(java.sql.Connection con, DBName dbname, java.lang.Object info)
          Gets the last inserted id, typically auto-increment(mysql) or serial (postgresql) columns.