| |
|
| java.lang.Object org.apache.torque.adapter.AbstractDBAdapter org.apache.torque.adapter.DBInformix
Constructor Summary | |
protected | DBInformix() Empty constructor. |
DBInformix | protected DBInformix()(Code) | | Empty constructor.
|
ignoreCase | public String ignoreCase(String in)(Code) | | This method is used to ignore case. Problem is that Informix
does not have an UPPER function. So the best would be to do
nothing.
Parameters: in - The string whose case to ignore. The string in a case that can be ignored. |
lockTable | public void lockTable(Connection con, String table) throws SQLException(Code) | | The method is used to lock a table.
Parameters: con - The JDBC connection to use. Parameters: table - The name of the table to lock. exception: SQLException - No Statement could be created or executed. |
toUpperCase | public String toUpperCase(String in)(Code) | | This method is used to ignore case. Problem is that Informix
does not have an UPPER function. So the best would be to do
nothing.
Parameters: in - The string to transform to upper case. The upper case string. |
unlockTable | public void unlockTable(Connection con, String table) throws SQLException(Code) | | The method is used to unlock a table.
Parameters: con - The JDBC connection to use. Parameters: table - The name of the table to unlock. exception: SQLException - No Statement could be created or executed. |
|
|
|