net.sourceforge.msscodefactory.cfinternet.v2_1.CFInternetDb2LUW.CFInternetDb2LUWISOTimezoneTable.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.msscodefactory.cfinternet.v2_1.CFInternetDb2LUW.CFInternetDb2LUWISOTimezoneTable.java

Source

// Description: Java 7 DB/2 LUW 10.5 Jdbc DbIO implementation for ISOTimezone.

/*
 *   CF Internet template model
 *
 *   Copyright (c) 2014 Mark Sobkow
 *   
 *      Licensed 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.
 *   
 * ***********************************************************************
 *
 *   Code manufactured by MSS Code Factory
 */

package net.sourceforge.msscodefactory.cfinternet.v2_1.CFInternetDb2LUW;

import java.math.*;
import java.sql.*;
import java.text.*;
import java.util.*;
import net.sourceforge.msscodefactory.cflib.v2_1.CFLib.*;
import org.apache.commons.codec.binary.Base64;
import net.sourceforge.msscodefactory.cfinternet.v2_1.CFInternet.*;

/*
 *   CFInternetDb2LUWISOTimezoneTable DB/2 LUW 10.5 Jdbc DbIO implementation
 *   for ISOTimezone.
 */
public class CFInternetDb2LUWISOTimezoneTable implements ICFInternetISOTimezoneTable {
    private CFInternetDb2LUWSchema schema;
    protected PreparedStatement stmtReadBuffByPKey = null;
    protected PreparedStatement stmtLockBuffByPKey = null;
    protected PreparedStatement stmtCreateByPKey = null;
    protected PreparedStatement stmtUpdateByPKey = null;
    protected PreparedStatement stmtDeleteByPKey = null;
    protected PreparedStatement stmtReadAllBuff = null;
    protected PreparedStatement stmtReadBuffByIdIdx = null;
    protected PreparedStatement stmtReadBuffByOffsetIdx = null;
    protected PreparedStatement stmtReadBuffByUTZNameIdx = null;
    protected PreparedStatement stmtReadBuffByIso8601Idx = null;
    protected PreparedStatement stmtDeleteByIdIdx = null;
    protected PreparedStatement stmtDeleteByOffsetIdx = null;
    protected PreparedStatement stmtDeleteByUTZNameIdx = null;
    protected PreparedStatement stmtDeleteByIso8601Idx = null;

    public CFInternetDb2LUWISOTimezoneTable(CFInternetDb2LUWSchema argSchema) {
        schema = argSchema;
    }

    public void createISOTimezone(CFInternetAuthorization Authorization, CFInternetISOTimezoneBuff Buff) {
        final String S_ProcName = "createISOTimezone";
        if (!schema.isTransactionOpen()) {
            throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName,
                    "Transaction not open");
        }
        ResultSet resultSet = null;
        try {
            short ISOTimezoneId = Buff.getRequiredISOTimezoneId();
            String Iso8601 = Buff.getRequiredIso8601();
            String TZName = Buff.getRequiredTZName();
            short TZHourOffset = Buff.getRequiredTZHourOffset();
            short TZMinOffset = Buff.getRequiredTZMinOffset();
            String Description = Buff.getRequiredDescription();
            boolean Visible = Buff.getRequiredVisible();
            Connection cnx = schema.getCnx();
            final String sql = "CALL sp_create_isotz( ?, ?, ?, ?, ?, ?" + ", " + "?" + ", " + "?" + ", " + "?"
                    + ", " + "?" + ", " + "?" + ", " + "?" + ", " + "?" + " )";
            if (stmtCreateByPKey == null) {
                stmtCreateByPKey = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtCreateByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtCreateByPKey.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtCreateByPKey.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtCreateByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtCreateByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtCreateByPKey.setString(argIdx++, "ITZN");
            stmtCreateByPKey.setShort(argIdx++, ISOTimezoneId);
            stmtCreateByPKey.setString(argIdx++, Iso8601);
            stmtCreateByPKey.setString(argIdx++, TZName);
            stmtCreateByPKey.setShort(argIdx++, TZHourOffset);
            stmtCreateByPKey.setShort(argIdx++, TZMinOffset);
            stmtCreateByPKey.setString(argIdx++, Description);
            if (Visible) {
                stmtCreateByPKey.setString(argIdx++, "Y");
            } else {
                stmtCreateByPKey.setString(argIdx++, "N");
            }
            resultSet = stmtCreateByPKey.executeQuery();
            if (resultSet.next()) {
                CFInternetISOTimezoneBuff createdBuff = unpackISOTimezoneResultSetToBuff(resultSet);
                if (resultSet.next()) {
                    resultSet.last();
                    throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                            "Did not expect multi-record response, " + resultSet.getRow() + " rows selected");
                }
                Buff.setRequiredISOTimezoneId(createdBuff.getRequiredISOTimezoneId());
                Buff.setRequiredIso8601(createdBuff.getRequiredIso8601());
                Buff.setRequiredTZName(createdBuff.getRequiredTZName());
                Buff.setRequiredTZHourOffset(createdBuff.getRequiredTZHourOffset());
                Buff.setRequiredTZMinOffset(createdBuff.getRequiredTZMinOffset());
                Buff.setRequiredDescription(createdBuff.getRequiredDescription());
                Buff.setRequiredVisible(createdBuff.getRequiredVisible());
                Buff.setRequiredRevision(createdBuff.getRequiredRevision());
                Buff.setCreatedByUserId(createdBuff.getCreatedByUserId());
                Buff.setCreatedAt(createdBuff.getCreatedAt());
                Buff.setUpdatedByUserId(createdBuff.getUpdatedByUserId());
                Buff.setUpdatedAt(createdBuff.getUpdatedAt());
            } else {
                throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                        "Expected a single-record response, " + resultSet.getRow() + " rows selected");
            }
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    protected static String S_sqlSelectISOTimezoneDistinctClassCode = null;

    public String getSqlSelectISOTimezoneDistinctClassCode() {
        if (S_sqlSelectISOTimezoneDistinctClassCode == null) {
            S_sqlSelectISOTimezoneDistinctClassCode = "SELECT " + "DISTINCT itzn.ClassCode " + "FROM "
                    + schema.getLowerDbSchemaName() + ".ISOTz AS itzn ";
        }
        return (S_sqlSelectISOTimezoneDistinctClassCode);
    }

    protected static String S_sqlSelectISOTimezoneBuff = null;

    public String getSqlSelectISOTimezoneBuff() {
        if (S_sqlSelectISOTimezoneBuff == null) {
            S_sqlSelectISOTimezoneBuff = "SELECT " + "itzn.ISOTimezoneId, " + "itzn.Iso8601, " + "itzn.TZName, "
                    + "itzn.TZHourOffset, " + "itzn.TZMinOffset, " + "itzn.Description, " + "itzn.Visible, "
                    + "itzn.Revision " + "FROM " + schema.getLowerDbSchemaName() + ".ISOTz AS itzn ";
        }
        return (S_sqlSelectISOTimezoneBuff);
    }

    protected CFInternetISOTimezoneBuff unpackISOTimezoneResultSetToBuff(ResultSet resultSet) throws SQLException {
        final String S_ProcName = "unpackISOTimezoneResultSetToBuff";
        int idxcol = 1;
        CFInternetISOTimezoneBuff buff = schema.getFactoryISOTimezone().newBuff();
        {
            String colString = resultSet.getString(idxcol);
            if (resultSet.wasNull()) {
                buff.setCreatedByUserId(null);
            } else if ((colString == null) || (colString.length() <= 0)) {
                buff.setCreatedByUserId(null);
            } else {
                buff.setCreatedByUserId(UUID.fromString(colString));
            }
            idxcol++;

            colString = resultSet.getString(idxcol);
            if (resultSet.wasNull()) {
                buff.setCreatedAt(null);
            } else if ((colString == null) || (colString.length() <= 0)) {
                buff.setCreatedAt(null);
            } else {
                buff.setCreatedAt(CFInternetDb2LUWSchema.convertTimestampString(colString));
            }
            idxcol++;
            colString = resultSet.getString(idxcol);
            if (resultSet.wasNull()) {
                buff.setUpdatedByUserId(null);
            } else if ((colString == null) || (colString.length() <= 0)) {
                buff.setUpdatedByUserId(null);
            } else {
                buff.setUpdatedByUserId(UUID.fromString(colString));
            }
            idxcol++;

            colString = resultSet.getString(idxcol);
            if (resultSet.wasNull()) {
                buff.setUpdatedAt(null);
            } else if ((colString == null) || (colString.length() <= 0)) {
                buff.setUpdatedAt(null);
            } else {
                buff.setUpdatedAt(CFInternetDb2LUWSchema.convertTimestampString(colString));
            }
            idxcol++;
        }
        buff.setRequiredISOTimezoneId(resultSet.getShort(idxcol));
        idxcol++;
        buff.setRequiredIso8601(resultSet.getString(idxcol));
        idxcol++;
        buff.setRequiredTZName(resultSet.getString(idxcol));
        idxcol++;
        buff.setRequiredTZHourOffset(resultSet.getShort(idxcol));
        idxcol++;
        buff.setRequiredTZMinOffset(resultSet.getShort(idxcol));
        idxcol++;
        buff.setRequiredDescription(resultSet.getString(idxcol));
        idxcol++;
        buff.setRequiredVisible(("Y".equals(resultSet.getString(idxcol)) ? true : false));
        idxcol++;

        buff.setRequiredRevision(resultSet.getInt(idxcol));
        return (buff);
    }

    public CFInternetISOTimezoneBuff readDerived(CFInternetAuthorization Authorization,
            CFInternetISOTimezonePKey PKey) {
        final String S_ProcName = "readDerived";
        if (!schema.isTransactionOpen()) {
            throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName,
                    "Transaction not open");
        }
        CFInternetISOTimezoneBuff buff;
        buff = readBuff(Authorization, PKey);
        return (buff);
    }

    public CFInternetISOTimezoneBuff lockDerived(CFInternetAuthorization Authorization,
            CFInternetISOTimezonePKey PKey) {
        final String S_ProcName = "lockDerived";
        if (!schema.isTransactionOpen()) {
            throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName,
                    "Transaction not open");
        }
        CFInternetISOTimezoneBuff buff;
        buff = lockBuff(Authorization, PKey);
        return (buff);
    }

    public CFInternetISOTimezoneBuff[] readAllDerived(CFInternetAuthorization Authorization) {
        final String S_ProcName = "readAllDerived";
        CFInternetISOTimezoneBuff[] buffArray;
        if (!schema.isTransactionOpen()) {
            throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName,
                    "Transaction not open");
        }
        buffArray = readAllBuff(Authorization);
        return (buffArray);
    }

    public CFInternetISOTimezoneBuff readDerivedByIdIdx(CFInternetAuthorization Authorization,
            short ISOTimezoneId) {
        final String S_ProcName = "CFInternetDb2LUWISOTimezoneTable.readDerivedByIdIdx() ";
        CFInternetISOTimezoneBuff buff;
        if (!schema.isTransactionOpen()) {
            throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName,
                    "Transaction not open");
        }
        buff = readBuffByIdIdx(Authorization, ISOTimezoneId);
        return (buff);
    }

    public CFInternetISOTimezoneBuff[] readDerivedByOffsetIdx(CFInternetAuthorization Authorization,
            short TZHourOffset, short TZMinOffset) {
        final String S_ProcName = "readDerivedByOffsetIdx";
        if (!schema.isTransactionOpen()) {
            throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName,
                    "Transaction not open");
        }
        CFInternetISOTimezoneBuff[] buffList = readBuffByOffsetIdx(Authorization, TZHourOffset, TZMinOffset);
        return (buffList);

    }

    public CFInternetISOTimezoneBuff readDerivedByUTZNameIdx(CFInternetAuthorization Authorization, String TZName) {
        final String S_ProcName = "CFInternetDb2LUWISOTimezoneTable.readDerivedByUTZNameIdx() ";
        CFInternetISOTimezoneBuff buff;
        if (!schema.isTransactionOpen()) {
            throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName,
                    "Transaction not open");
        }
        buff = readBuffByUTZNameIdx(Authorization, TZName);
        return (buff);
    }

    public CFInternetISOTimezoneBuff[] readDerivedByIso8601Idx(CFInternetAuthorization Authorization,
            String Iso8601) {
        final String S_ProcName = "readDerivedByIso8601Idx";
        if (!schema.isTransactionOpen()) {
            throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName,
                    "Transaction not open");
        }
        CFInternetISOTimezoneBuff[] buffList = readBuffByIso8601Idx(Authorization, Iso8601);
        return (buffList);

    }

    public CFInternetISOTimezoneBuff readBuff(CFInternetAuthorization Authorization,
            CFInternetISOTimezonePKey PKey) {
        final String S_ProcName = "readBuff";
        if (!schema.isTransactionOpen()) {
            throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName,
                    "Transaction not open");
        }
        ResultSet resultSet = null;
        try {
            Connection cnx = schema.getCnx();
            short ISOTimezoneId = PKey.getRequiredISOTimezoneId();
            final String sql = "CALL sp_read_isotz( ?, ?, ?, ?, ?" + ", " + "?" + " )";
            if (stmtReadBuffByPKey == null) {
                stmtReadBuffByPKey = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtReadBuffByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtReadBuffByPKey.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtReadBuffByPKey.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtReadBuffByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtReadBuffByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtReadBuffByPKey.setShort(argIdx++, ISOTimezoneId);
            resultSet = stmtReadBuffByPKey.executeQuery();
            if (resultSet.next()) {
                CFInternetISOTimezoneBuff buff = unpackISOTimezoneResultSetToBuff(resultSet);
                if (resultSet.next()) {
                    resultSet.last();
                    throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                            "Did not expect multi-record response, " + resultSet.getRow() + " rows selected");
                }
                return (buff);
            } else {
                return (null);
            }
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public CFInternetISOTimezoneBuff lockBuff(CFInternetAuthorization Authorization,
            CFInternetISOTimezonePKey PKey) {
        final String S_ProcName = "lockBuff";
        if (!schema.isTransactionOpen()) {
            throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName,
                    "Transaction not open");
        }
        ResultSet resultSet = null;
        try {
            Connection cnx = schema.getCnx();
            short ISOTimezoneId = PKey.getRequiredISOTimezoneId();
            final String sql = "CALL sp_lock_isotz( ?, ?, ?, ?, ?" + ", " + "?" + " )";
            if (stmtLockBuffByPKey == null) {
                stmtLockBuffByPKey = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtLockBuffByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtLockBuffByPKey.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtLockBuffByPKey.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtLockBuffByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtLockBuffByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtLockBuffByPKey.setShort(argIdx++, ISOTimezoneId);
            resultSet = stmtLockBuffByPKey.executeQuery();
            if (resultSet.next()) {
                CFInternetISOTimezoneBuff buff = unpackISOTimezoneResultSetToBuff(resultSet);
                if (resultSet.next()) {
                    resultSet.last();
                    throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                            "Did not expect multi-record response, " + resultSet.getRow() + " rows selected");
                }
                return (buff);
            } else {
                return (null);
            }
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public CFInternetISOTimezoneBuff[] readAllBuff(CFInternetAuthorization Authorization) {
        final String S_ProcName = "readAllBuff";
        if (!schema.isTransactionOpen()) {
            throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName,
                    "Transaction not open");
        }
        ResultSet resultSet = null;
        try {
            Connection cnx = schema.getCnx();
            final String sql = "CALL sp_read_isotz_all( ?, ?, ?, ?, ? )";
            if (stmtReadAllBuff == null) {
                stmtReadAllBuff = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtReadAllBuff.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtReadAllBuff.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtReadAllBuff.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtReadAllBuff.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtReadAllBuff.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecTenantId());
            resultSet = stmtReadAllBuff.executeQuery();
            List<CFInternetISOTimezoneBuff> buffList = new LinkedList<CFInternetISOTimezoneBuff>();
            while (resultSet.next()) {
                CFInternetISOTimezoneBuff buff = unpackISOTimezoneResultSetToBuff(resultSet);
                buffList.add(buff);
            }
            int idx = 0;
            CFInternetISOTimezoneBuff[] retBuff = new CFInternetISOTimezoneBuff[buffList.size()];
            Iterator<CFInternetISOTimezoneBuff> iter = buffList.iterator();
            while (iter.hasNext()) {
                retBuff[idx++] = iter.next();
            }
            return (retBuff);
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public CFInternetISOTimezoneBuff readBuffByIdIdx(CFInternetAuthorization Authorization, short ISOTimezoneId) {
        final String S_ProcName = "readBuffByIdIdx";
        ResultSet resultSet = null;
        try {
            Connection cnx = schema.getCnx();
            final String sql = "CALL sp_read_isotz_by_ididx( ?, ?, ?, ?, ?" + ", " + "?" + " )";
            if (stmtReadBuffByIdIdx == null) {
                stmtReadBuffByIdIdx = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtReadBuffByIdIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtReadBuffByIdIdx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtReadBuffByIdIdx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtReadBuffByIdIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtReadBuffByIdIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtReadBuffByIdIdx.setShort(argIdx++, ISOTimezoneId);
            resultSet = stmtReadBuffByIdIdx.executeQuery();
            if (resultSet.next()) {
                CFInternetISOTimezoneBuff buff = unpackISOTimezoneResultSetToBuff(resultSet);
                if (resultSet.next()) {
                    resultSet.last();
                    throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                            "Did not expect multi-record response, " + resultSet.getRow() + " rows selected");
                }
                return (buff);
            } else {
                return (null);
            }
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public CFInternetISOTimezoneBuff[] readBuffByOffsetIdx(CFInternetAuthorization Authorization,
            short TZHourOffset, short TZMinOffset) {
        final String S_ProcName = "readBuffByOffsetIdx";
        ResultSet resultSet = null;
        try {
            Connection cnx = schema.getCnx();
            final String sql = "CALL sp_read_isotz_by_offsetidx( ?, ?, ?, ?, ?" + ", " + "?" + ", " + "?" + " )";
            if (stmtReadBuffByOffsetIdx == null) {
                stmtReadBuffByOffsetIdx = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtReadBuffByOffsetIdx.setLong(argIdx++,
                    (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtReadBuffByOffsetIdx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtReadBuffByOffsetIdx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtReadBuffByOffsetIdx.setLong(argIdx++,
                    (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtReadBuffByOffsetIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtReadBuffByOffsetIdx.setShort(argIdx++, TZHourOffset);
            stmtReadBuffByOffsetIdx.setShort(argIdx++, TZMinOffset);
            resultSet = stmtReadBuffByOffsetIdx.executeQuery();
            List<CFInternetISOTimezoneBuff> buffList = new LinkedList<CFInternetISOTimezoneBuff>();
            while (resultSet.next()) {
                CFInternetISOTimezoneBuff buff = unpackISOTimezoneResultSetToBuff(resultSet);
                buffList.add(buff);
            }
            int idx = 0;
            CFInternetISOTimezoneBuff[] retBuff = new CFInternetISOTimezoneBuff[buffList.size()];
            Iterator<CFInternetISOTimezoneBuff> iter = buffList.iterator();
            while (iter.hasNext()) {
                retBuff[idx++] = iter.next();
            }
            return (retBuff);
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public CFInternetISOTimezoneBuff readBuffByUTZNameIdx(CFInternetAuthorization Authorization, String TZName) {
        final String S_ProcName = "readBuffByUTZNameIdx";
        ResultSet resultSet = null;
        try {
            Connection cnx = schema.getCnx();
            final String sql = "CALL sp_read_isotz_by_utznameidx( ?, ?, ?, ?, ?" + ", " + "?" + " )";
            if (stmtReadBuffByUTZNameIdx == null) {
                stmtReadBuffByUTZNameIdx = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtReadBuffByUTZNameIdx.setLong(argIdx++,
                    (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtReadBuffByUTZNameIdx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtReadBuffByUTZNameIdx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtReadBuffByUTZNameIdx.setLong(argIdx++,
                    (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtReadBuffByUTZNameIdx.setLong(argIdx++,
                    (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtReadBuffByUTZNameIdx.setString(argIdx++, TZName);
            resultSet = stmtReadBuffByUTZNameIdx.executeQuery();
            if (resultSet.next()) {
                CFInternetISOTimezoneBuff buff = unpackISOTimezoneResultSetToBuff(resultSet);
                if (resultSet.next()) {
                    resultSet.last();
                    throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                            "Did not expect multi-record response, " + resultSet.getRow() + " rows selected");
                }
                return (buff);
            } else {
                return (null);
            }
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public CFInternetISOTimezoneBuff[] readBuffByIso8601Idx(CFInternetAuthorization Authorization, String Iso8601) {
        final String S_ProcName = "readBuffByIso8601Idx";
        ResultSet resultSet = null;
        try {
            Connection cnx = schema.getCnx();
            final String sql = "CALL sp_read_isotz_by_iso8601idx( ?, ?, ?, ?, ?" + ", " + "?" + " )";
            if (stmtReadBuffByIso8601Idx == null) {
                stmtReadBuffByIso8601Idx = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtReadBuffByIso8601Idx.setLong(argIdx++,
                    (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtReadBuffByIso8601Idx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtReadBuffByIso8601Idx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtReadBuffByIso8601Idx.setLong(argIdx++,
                    (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtReadBuffByIso8601Idx.setLong(argIdx++,
                    (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtReadBuffByIso8601Idx.setString(argIdx++, Iso8601);
            resultSet = stmtReadBuffByIso8601Idx.executeQuery();
            List<CFInternetISOTimezoneBuff> buffList = new LinkedList<CFInternetISOTimezoneBuff>();
            while (resultSet.next()) {
                CFInternetISOTimezoneBuff buff = unpackISOTimezoneResultSetToBuff(resultSet);
                buffList.add(buff);
            }
            int idx = 0;
            CFInternetISOTimezoneBuff[] retBuff = new CFInternetISOTimezoneBuff[buffList.size()];
            Iterator<CFInternetISOTimezoneBuff> iter = buffList.iterator();
            while (iter.hasNext()) {
                retBuff[idx++] = iter.next();
            }
            return (retBuff);
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public void updateISOTimezone(CFInternetAuthorization Authorization, CFInternetISOTimezoneBuff Buff) {
        final String S_ProcName = "updateISOTimezone";
        if ("ITZN".equals(Buff.getClassCode()) && (!schema.isSystemUser(Authorization))) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Permission denied -- only system user can modify ISOTimezone data");
        }
        ResultSet resultSet = null;
        try {
            short ISOTimezoneId = Buff.getRequiredISOTimezoneId();
            String Iso8601 = Buff.getRequiredIso8601();
            String TZName = Buff.getRequiredTZName();
            short TZHourOffset = Buff.getRequiredTZHourOffset();
            short TZMinOffset = Buff.getRequiredTZMinOffset();
            String Description = Buff.getRequiredDescription();
            boolean Visible = Buff.getRequiredVisible();
            int Revision = Buff.getRequiredRevision();
            Connection cnx = schema.getCnx();
            final String sql = "CALL sp_update_isotz( ?, ?, ?, ?, ?, ?" + ", " + "?" + ", " + "?" + ", " + "?"
                    + ", " + "?" + ", " + "?" + ", " + "?" + ", " + "?" + ", " + "?" + " )";
            if (stmtUpdateByPKey == null) {
                stmtUpdateByPKey = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtUpdateByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtUpdateByPKey.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtUpdateByPKey.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtUpdateByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtUpdateByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtUpdateByPKey.setString(argIdx++, "ITZN");
            stmtUpdateByPKey.setShort(argIdx++, ISOTimezoneId);
            stmtUpdateByPKey.setString(argIdx++, Iso8601);
            stmtUpdateByPKey.setString(argIdx++, TZName);
            stmtUpdateByPKey.setShort(argIdx++, TZHourOffset);
            stmtUpdateByPKey.setShort(argIdx++, TZMinOffset);
            stmtUpdateByPKey.setString(argIdx++, Description);
            if (Visible) {
                stmtUpdateByPKey.setString(argIdx++, "Y");
            } else {
                stmtUpdateByPKey.setString(argIdx++, "N");
            }
            stmtUpdateByPKey.setInt(argIdx++, Revision);
            resultSet = stmtUpdateByPKey.executeQuery();
            if (resultSet.next()) {
                CFInternetISOTimezoneBuff updatedBuff = unpackISOTimezoneResultSetToBuff(resultSet);
                if (resultSet.next()) {
                    resultSet.last();
                    throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                            "Did not expect multi-record response, " + resultSet.getRow() + " rows selected");
                }
                Buff.setRequiredIso8601(updatedBuff.getRequiredIso8601());
                Buff.setRequiredTZName(updatedBuff.getRequiredTZName());
                Buff.setRequiredTZHourOffset(updatedBuff.getRequiredTZHourOffset());
                Buff.setRequiredTZMinOffset(updatedBuff.getRequiredTZMinOffset());
                Buff.setRequiredDescription(updatedBuff.getRequiredDescription());
                Buff.setRequiredVisible(updatedBuff.getRequiredVisible());
                Buff.setRequiredRevision(updatedBuff.getRequiredRevision());
            } else {
                throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                        "Expected a single-record response, " + resultSet.getRow() + " rows selected");
            }
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public void deleteISOTimezone(CFInternetAuthorization Authorization, CFInternetISOTimezoneBuff Buff) {
        final String S_ProcName = "deleteISOTimezone";
        ResultSet resultSet = null;
        try {
            Connection cnx = schema.getCnx();
            short ISOTimezoneId = Buff.getRequiredISOTimezoneId();

            final String sql = "CALL sp_delete_isotz( ?, ?, ?, ?, ?" + ", " + "?" + ", " + "?" + " )";
            if (stmtDeleteByPKey == null) {
                stmtDeleteByPKey = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtDeleteByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtDeleteByPKey.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtDeleteByPKey.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtDeleteByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtDeleteByPKey.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtDeleteByPKey.setShort(argIdx++, ISOTimezoneId);
            stmtDeleteByPKey.setInt(argIdx++, Buff.getRequiredRevision());
            ;
            resultSet = stmtDeleteByPKey.executeQuery();
            if (resultSet.next()) {
                int deleteFlag = resultSet.getInt(1);
                if (resultSet.next()) {
                    resultSet.last();
                    throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                            "Did not expect multi-record response, " + resultSet.getRow() + " rows selected");
                }
            } else {
                throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                        "Expected 1 record result set to be returned by delete, not 0 rows");
            }
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public void deleteISOTimezoneByIdIdx(CFInternetAuthorization Authorization, short argISOTimezoneId) {
        final String S_ProcName = "deleteISOTimezoneByIdIdx";
        ResultSet resultSet = null;
        try {
            Connection cnx = schema.getCnx();
            final String sql = "CALL sp_delete_isotz_by_ididx( ?, ?, ?, ?, ?" + ", " + "?" + " )";
            if (stmtDeleteByIdIdx == null) {
                stmtDeleteByIdIdx = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtDeleteByIdIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtDeleteByIdIdx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtDeleteByIdIdx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtDeleteByIdIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtDeleteByIdIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtDeleteByIdIdx.setShort(argIdx++, argISOTimezoneId);
            resultSet = stmtDeleteByIdIdx.executeQuery();
            if (resultSet.next()) {
                int deleteFlag = resultSet.getInt(1);
                if (resultSet.next()) {
                    resultSet.last();
                    throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                            "Did not expect multi-record response, " + resultSet.getRow() + " rows selected");
                }
            } else {
                throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                        "Expected 1 record result set to be returned by delete, not 0 rows");
            }
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public void deleteISOTimezoneByIdIdx(CFInternetAuthorization Authorization, CFInternetISOTimezonePKey argKey) {
        deleteISOTimezoneByIdIdx(Authorization, argKey.getRequiredISOTimezoneId());
    }

    public void deleteISOTimezoneByOffsetIdx(CFInternetAuthorization Authorization, short argTZHourOffset,
            short argTZMinOffset) {
        final String S_ProcName = "deleteISOTimezoneByOffsetIdx";
        ResultSet resultSet = null;
        try {
            Connection cnx = schema.getCnx();
            final String sql = "CALL sp_delete_isotz_by_offsetidx( ?, ?, ?, ?, ?" + ", " + "?" + ", " + "?" + " )";
            if (stmtDeleteByOffsetIdx == null) {
                stmtDeleteByOffsetIdx = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtDeleteByOffsetIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtDeleteByOffsetIdx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtDeleteByOffsetIdx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtDeleteByOffsetIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtDeleteByOffsetIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtDeleteByOffsetIdx.setShort(argIdx++, argTZHourOffset);
            stmtDeleteByOffsetIdx.setShort(argIdx++, argTZMinOffset);
            resultSet = stmtDeleteByOffsetIdx.executeQuery();
            if (resultSet.next()) {
                int deleteFlag = resultSet.getInt(1);
                if (resultSet.next()) {
                    resultSet.last();
                    throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                            "Did not expect multi-record response, " + resultSet.getRow() + " rows selected");
                }
            } else {
                throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                        "Expected 1 record result set to be returned by delete, not 0 rows");
            }
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public void deleteISOTimezoneByOffsetIdx(CFInternetAuthorization Authorization,
            CFInternetISOTimezoneByOffsetIdxKey argKey) {
        deleteISOTimezoneByOffsetIdx(Authorization, argKey.getRequiredTZHourOffset(),
                argKey.getRequiredTZMinOffset());
    }

    public void deleteISOTimezoneByUTZNameIdx(CFInternetAuthorization Authorization, String argTZName) {
        final String S_ProcName = "deleteISOTimezoneByUTZNameIdx";
        ResultSet resultSet = null;
        try {
            Connection cnx = schema.getCnx();
            final String sql = "CALL sp_delete_isotz_by_utznameidx( ?, ?, ?, ?, ?" + ", " + "?" + " )";
            if (stmtDeleteByUTZNameIdx == null) {
                stmtDeleteByUTZNameIdx = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtDeleteByUTZNameIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtDeleteByUTZNameIdx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtDeleteByUTZNameIdx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtDeleteByUTZNameIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtDeleteByUTZNameIdx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtDeleteByUTZNameIdx.setString(argIdx++, argTZName);
            resultSet = stmtDeleteByUTZNameIdx.executeQuery();
            if (resultSet.next()) {
                int deleteFlag = resultSet.getInt(1);
                if (resultSet.next()) {
                    resultSet.last();
                    throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                            "Did not expect multi-record response, " + resultSet.getRow() + " rows selected");
                }
            } else {
                throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                        "Expected 1 record result set to be returned by delete, not 0 rows");
            }
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public void deleteISOTimezoneByUTZNameIdx(CFInternetAuthorization Authorization,
            CFInternetISOTimezoneByUTZNameIdxKey argKey) {
        deleteISOTimezoneByUTZNameIdx(Authorization, argKey.getRequiredTZName());
    }

    public void deleteISOTimezoneByIso8601Idx(CFInternetAuthorization Authorization, String argIso8601) {
        final String S_ProcName = "deleteISOTimezoneByIso8601Idx";
        ResultSet resultSet = null;
        try {
            Connection cnx = schema.getCnx();
            final String sql = "CALL sp_delete_isotz_by_iso8601idx( ?, ?, ?, ?, ?" + ", " + "?" + " )";
            if (stmtDeleteByIso8601Idx == null) {
                stmtDeleteByIso8601Idx = cnx.prepareStatement(sql);
            }
            int argIdx = 1;
            stmtDeleteByIso8601Idx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtDeleteByIso8601Idx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecUserId().toString());
            stmtDeleteByIso8601Idx.setString(argIdx++,
                    (Authorization == null) ? "" : Authorization.getSecSessionId().toString());
            stmtDeleteByIso8601Idx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecClusterId());
            stmtDeleteByIso8601Idx.setLong(argIdx++, (Authorization == null) ? 0 : Authorization.getSecTenantId());
            stmtDeleteByIso8601Idx.setString(argIdx++, argIso8601);
            resultSet = stmtDeleteByIso8601Idx.executeQuery();
            if (resultSet.next()) {
                int deleteFlag = resultSet.getInt(1);
                if (resultSet.next()) {
                    resultSet.last();
                    throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                            "Did not expect multi-record response, " + resultSet.getRow() + " rows selected");
                }
            } else {
                throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                        "Expected 1 record result set to be returned by delete, not 0 rows");
            }
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        } finally {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                }
                resultSet = null;
            }
        }
    }

    public void deleteISOTimezoneByIso8601Idx(CFInternetAuthorization Authorization,
            CFInternetISOTimezoneByIso8601IdxKey argKey) {
        deleteISOTimezoneByIso8601Idx(Authorization, argKey.getRequiredIso8601());
    }

    public CFInternetCursor openISOTimezoneCursorAll(CFInternetAuthorization Authorization) {
        String sql = getSqlSelectISOTimezoneBuff() + "ORDER BY " + "itzn.ISOTimezoneId ASC";
        CFInternetCursor cursor = new CFInternetDb2LUWCursor(Authorization, schema, sql);
        return (cursor);
    }

    public CFInternetCursor openISOTimezoneCursorByOffsetIdx(CFInternetAuthorization Authorization,
            short TZHourOffset, short TZMinOffset) {
        String sql = getSqlSelectISOTimezoneBuff() + "WHERE " + "itzn.TZHourOffset = "
                + Short.toString(TZHourOffset) + " " + "AND " + "itzn.TZMinOffset = " + Short.toString(TZMinOffset)
                + " " + "ORDER BY " + "itzn.ISOTimezoneId ASC";
        CFInternetCursor cursor = new CFInternetDb2LUWCursor(Authorization, schema, sql);
        return (cursor);
    }

    public CFInternetCursor openISOTimezoneCursorByIso8601Idx(CFInternetAuthorization Authorization,
            String Iso8601) {
        String sql = getSqlSelectISOTimezoneBuff() + "WHERE " + "itzn.Iso8601 = "
                + CFInternetDb2LUWSchema.getQuotedString(Iso8601) + " " + "ORDER BY " + "itzn.ISOTimezoneId ASC";
        CFInternetCursor cursor = new CFInternetDb2LUWCursor(Authorization, schema, sql);
        return (cursor);
    }

    public void closeISOTimezoneCursor(CFInternetCursor Cursor) {
        try {
            Cursor.getResultSet().close();
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), "closeISOTimezoneCursor", e);
        }
    }

    public CFInternetISOTimezoneBuff nextISOTimezoneCursor(CFInternetCursor Cursor) {
        final String S_ProcName = "nextISOTimezoneCursor";
        try {
            ResultSet resultSet = Cursor.getResultSet();
            if (!resultSet.next()) {
                throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                        "No more results available");
            }
            CFInternetISOTimezoneBuff buff = unpackISOTimezoneResultSetToBuff(resultSet);
            return (buff);
        } catch (SQLException e) {
            throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e);
        }
    }

    public CFInternetISOTimezoneBuff prevISOTimezoneCursor(CFInternetCursor Cursor) {
        int targetRowIdx = (Cursor.getRowIdx() > 1) ? Cursor.getRowIdx() - 1 : 1;
        CFInternetISOTimezoneBuff buff = null;
        if (Cursor.getRowIdx() >= targetRowIdx) {
            Cursor.reset();
        }
        while (Cursor.getRowIdx() < targetRowIdx) {
            buff = nextISOTimezoneCursor(Cursor);
        }
        return (buff);
    }

    public CFInternetISOTimezoneBuff firstISOTimezoneCursor(CFInternetCursor Cursor) {
        int targetRowIdx = 1;
        CFInternetISOTimezoneBuff buff = null;
        Cursor.reset();
        while (Cursor.getRowIdx() < targetRowIdx) {
            buff = nextISOTimezoneCursor(Cursor);
        }
        return (buff);
    }

    public CFInternetISOTimezoneBuff lastISOTimezoneCursor(CFInternetCursor Cursor) {
        throw CFLib.getDefaultExceptionFactory().newNotImplementedYetException(getClass(), "lastISOTimezoneCursor");
    }

    public CFInternetISOTimezoneBuff nthISOTimezoneCursor(CFInternetCursor Cursor, int Idx) {
        int targetRowIdx = Idx;
        CFInternetISOTimezoneBuff buff = null;
        if (Cursor.getRowIdx() >= targetRowIdx) {
            Cursor.reset();
        }
        while (Cursor.getRowIdx() < targetRowIdx) {
            buff = nextISOTimezoneCursor(Cursor);
        }
        return (buff);
    }

    /**
     *   Release the prepared statements.
     *   <p>
     *   When the schema changes connections, the prepared statements
     *   have to be released because they contain connection-specific
     *   information for most databases.
     */
    public void releasePreparedStatements() {
        final String S_ProcName = "releasePreparedStatements";
        S_sqlSelectISOTimezoneDistinctClassCode = null;
        S_sqlSelectISOTimezoneBuff = null;

        if (stmtReadBuffByPKey != null) {
            try {
                stmtReadBuffByPKey.close();
            } catch (SQLException e) {
            }
            stmtReadBuffByPKey = null;
        }
        if (stmtReadAllBuff != null) {
            try {
                stmtReadAllBuff.close();
            } catch (SQLException e) {
            }
            stmtReadAllBuff = null;
        }
        if (stmtLockBuffByPKey != null) {
            try {
                stmtLockBuffByPKey.close();
            } catch (SQLException e) {
            }
            stmtLockBuffByPKey = null;
        }
        if (stmtCreateByPKey != null) {
            try {
                stmtCreateByPKey.close();
            } catch (SQLException e) {
            }
            stmtCreateByPKey = null;
        }
        if (stmtUpdateByPKey != null) {
            try {
                stmtUpdateByPKey.close();
            } catch (SQLException e) {
            }
            stmtUpdateByPKey = null;
        }
        if (stmtDeleteByPKey != null) {
            try {
                stmtDeleteByPKey.close();
            } catch (SQLException e) {
            }
            stmtDeleteByPKey = null;
        }
        if (stmtDeleteByIdIdx != null) {
            try {
                stmtDeleteByIdIdx.close();
            } catch (SQLException e) {
            }
            stmtDeleteByIdIdx = null;
        }
        if (stmtDeleteByOffsetIdx != null) {
            try {
                stmtDeleteByOffsetIdx.close();
            } catch (SQLException e) {
            }
            stmtDeleteByOffsetIdx = null;
        }
        if (stmtDeleteByUTZNameIdx != null) {
            try {
                stmtDeleteByUTZNameIdx.close();
            } catch (SQLException e) {
            }
            stmtDeleteByUTZNameIdx = null;
        }
        if (stmtDeleteByIso8601Idx != null) {
            try {
                stmtDeleteByIso8601Idx.close();
            } catch (SQLException e) {
            }
            stmtDeleteByIso8601Idx = null;
        }
        if (stmtReadAllBuff != null) {
            try {
                stmtReadAllBuff.close();
            } catch (SQLException e) {
            }
            stmtReadAllBuff = null;
        }
        if (stmtReadBuffByIdIdx != null) {
            try {
                stmtReadBuffByIdIdx.close();
            } catch (SQLException e) {
            }
            stmtReadBuffByIdIdx = null;
        }
        if (stmtReadBuffByOffsetIdx != null) {
            try {
                stmtReadBuffByOffsetIdx.close();
            } catch (SQLException e) {
            }
            stmtReadBuffByOffsetIdx = null;
        }
        if (stmtReadBuffByUTZNameIdx != null) {
            try {
                stmtReadBuffByUTZNameIdx.close();
            } catch (SQLException e) {
            }
            stmtReadBuffByUTZNameIdx = null;
        }
        if (stmtReadBuffByIso8601Idx != null) {
            try {
                stmtReadBuffByIso8601Idx.close();
            } catch (SQLException e) {
            }
            stmtReadBuffByIso8601Idx = null;
        }
    }
}