decodes.sql.OracleSequenceKeyGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opendcs Show documentation
Show all versions of opendcs Show documentation
A collection of software for aggregatting and processing environmental data such as from NOAA GOES satellites.
The newest version!
/*
* $Id$
*
* This is open-source software written by ILEX Engineering, Inc., under
* contract to the federal government. You are free to copy and use this
* source code for your own purposes, except that no part of this source
* code may be claimed to be proprietary.
*
* Except for specific contractual terms between ILEX and the federal
* government, this source code is provided completely without warranty.
* For more information contact: [email protected]
*
* $Log$
* Revision 1.3 2015/12/02 21:19:11 mmaloney
* Added reset() method for DCP monitor. When it starts a new day, it wants to reset the sequence.
*
* Revision 1.2 2015/03/19 15:23:14 mmaloney
* punch list
*
* Revision 1.1.1.1 2014/05/19 15:28:59 mmaloney
* OPENDCS 6.0 Initial Checkin
*
* Revision 1.5 2013/03/21 18:27:39 mmaloney
* DbKey Implementation
*
* Revision 1.4 2011/09/09 21:58:52 gchen
* Fix a bug for Oracle sequence key generator with adding a trim function to remove the tailing spaces.
*
* Revision 1.3 2009/01/03 20:31:14 mjmaloney
* Added Routing Spec thread-specific database connections for synchronization.
*
* Revision 1.2 2008/12/23 22:26:42 mbogner
* create new sequence generator specifically for HDB only M Bogner
*
* Revision 1.1 2008/04/04 18:21:04 cvs
* Added legacy code to repository
*
* Revision 1.4 2007/12/11 01:05:19 mmaloney
* javadoc cleanup
*
* Revision 1.3 2007/11/20 14:27:35 mmaloney
* dev
*
* Revision 1.2 2006/05/03 21:01:01 mmaloney
* dev
*
* Revision 1.1 2005/06/09 20:45:44 mjmaloney
* Modifications for Oracle compatibility.
*
*/
package decodes.sql;
import java.sql.Connection;
import java.sql.Statement;
import java.sql.ResultSet;
import java.sql.SQLException;
import decodes.db.DatabaseException;
import ilex.util.Logger;
/**
Implements the KeyGenerator interface by using SQL sequences using the
ORACLE syntax.
This class is the same as the vanilla SequenceKeyGenerator, except
that it uses the oracle attribute syntax, rather than the postgres
function call syntax.
This implementation will work with Version 5 or Version 6 database.
*/
public class OracleSequenceKeyGenerator
implements KeyGenerator
{
/** Default constructor. */
public OracleSequenceKeyGenerator()
{
Logger.instance().debug1("OracleSequenceKeyGenerator constructor");
}
/**
Generates a database-unique key suitable for adding a new entry
to the table.
The 'tableName' argument should be the name of the table to which
a new record will be added.
@param tableName the tableName for which a key is needed
@return numeric key for a new row in this table
*/
public DbKey getKey(String tableName, Connection conn)
throws DatabaseException
{
String seqname;
if (tableName.equalsIgnoreCase("EquipmentModel"))
seqname = "EquipmentIdSeq";
else
seqname = tableName.trim() + "IdSeq";
String q = "SELECT " + seqname.trim() + ".nextval from dual";
Statement stmt = null;
try
{
stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery(q);
if (rs == null || !rs.next())
{
String err = "Cannot read sequence value from '" + seqname
+ "': " + (rs == null ? "Null Return" : "Empty Return");
throw new DatabaseException(err);
}
return DbKey.createDbKey(rs, 1);
}
catch(SQLException ex)
{
String err = "SQL Error executing '" + q + "': " + ex;
throw new DatabaseException(err);
}
finally
{
if (stmt != null)
try { stmt.close(); } catch(Exception ex) {}
}
}
@Override
public void reset(String tableName, Connection conn) throws DatabaseException
{
// Primitive Oracle SQL requires 4 steps:
// 1. Get current sequence value
// 2. Set increment to negative that amount
// 3. Get next sequence value (which causes increment to be applied).
// 4. Set increment back to 1.
DbKey curval = getKey(tableName, conn);
String seqname = tableName.trim() + "IdSeq";
String q = "alter sequence " + seqname + " increment by -" + (curval.getValue()-2);
Statement stmt = null;
try
{
stmt = conn.createStatement();
stmt.executeUpdate(q);
q = "SELECT " + seqname + ".nextval from dual";
stmt.executeUpdate(q);
q = "alter sequence " + seqname + " increment by 1 minvalue 0";
stmt.executeUpdate(q);
}
catch(SQLException ex)
{
String err = "SQL Error executing '" + q + "': " + ex;
throw new DatabaseException(err);
}
finally
{
if (stmt != null)
try { stmt.close(); } catch(Exception ex) {}
}
}
}