| |
|
| java.lang.Object org.apache.torque.adapter.AbstractDBAdapter org.apache.torque.adapter.DBSapDB
Constructor Summary | |
protected | DBSapDB() Empty constructor. |
DBSapDB | protected DBSapDB()(Code) | | Empty constructor.
|
escapeText | public boolean escapeText()(Code) | | This method is for the SqlExpression.quoteAndEscape rules. The rule is,
any string in a SqlExpression with a BACKSLASH will either be changed to
"\\" or left as "\". SapDB does not need the escape character.
false. |
getIDMethodSQL | public String getIDMethodSQL(Object sequenceName)(Code) | | Returns the next key from a sequence. Uses the following
implementation:
select sequenceName.nextval from dual
Parameters: sequenceName - The name of the sequence (should be of typeString ). SQL to retreive the next database key. See Also: org.apache.torque.adapter.DB.getIDMethodSQL(Object) |
ignoreCase | public String ignoreCase(String in)(Code) | | This method is used to ignore case.
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) | | Locks the specified 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.
Parameters: in - The string to transform to upper case. The upper case string. |
unlockTable | public void unlockTable(Connection con, String table) throws SQLException(Code) | | Unlocks the specified table.
Parameters: con - The JDBC connection to use. Parameters: table - The name of the table to unlock. exception: SQLException - No Statement could be created orexecuted. |
|
|
|