package org.apache.torque.adapter;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import java.sql.Connection;
import java.sql.SQLException;
/**
* This is used to connect to Hypersonic SQL databases.
*
* <a href="http://hsqldb.org/">http://hsqldb.org/</a>
*
* @author <a href="mailto:celkins@scardini.com">Christopher Elkins</a>
* @version $Id: DBHypersonicSQL.java 476550 2006-11-18 16:08:37Z tfischer $
*/
public class DBHypersonicSQL extends AbstractDBAdapter
{
/**
* Serial version
*/
private static final long serialVersionUID = 8392727399615702372L;
/**
* Constructor.
*/
protected DBHypersonicSQL()
{
}
/**
* This method is used to ignore case.
*
* @param in The string to transform to upper case.
* @return The upper case string.
*/
public String toUpperCase(String in)
{
String s = new StringBuffer("UPPER(").append(in).append(")").toString();
return s;
}
/**
* This method is used to ignore case.
*
* @param in The string whose case to ignore.
* @return The string in a case that can be ignored.
*/
public String ignoreCase(String in)
{
return toUpperCase(in);
}
/**
* @see org.apache.torque.adapter.DB#getIDMethodType()
*/
public String getIDMethodType()
{
return AUTO_INCREMENT;
}
/**
* @see org.apache.torque.adapter.DB#ignoreCaseInOrderBy(String)
*/
public String ignoreCaseInOrderBy(String in)
{
return "CAST(" + in + " AS VARCHAR_IGNORECASE)";
}
/**
* @see org.apache.torque.adapter.DB#getIDMethodSQL(Object obj)
*/
public String getIDMethodSQL(Object obj)
{
StringBuffer command = new StringBuffer("select IDENTITY() from ");
String qualifiedIdentifier = (String) obj;
command.append(qualifiedIdentifier);
return command.toString();
}
/**
* Locks the specified table.
*
* @param con The JDBC connection to use.
* @param table The name of the table to lock.
* @exception SQLException No Statement could be created or executed.
*/
public void lockTable(Connection con, String table) throws SQLException
{
}
/**
* Unlocks the specified table.
*
* @param con The JDBC connection to use.
* @param table The name of the table to unlock.
* @exception SQLException No Statement could be created or executed.
*/
public void unlockTable(Connection con, String table) throws SQLException
{
}
/**
* 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 "\".
*
* @return false.
*/
public boolean escapeText()
{
return false;
}
/**
* Whether an escape clause in like should be used.
* Example : select * from AUTHOR where AUTHOR.NAME like '\_%' ESCAPE '\';
*
* HSQLDB needs this, so this implementation always returns
* <code>true</code>.
*
* @return whether the escape clause should be appended or not.
*/
public boolean useEscapeClauseForLike()
{
return true;
}
}
|