/****************************************************************************** * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program; if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via info@compiere.org or http://www.compiere.org/license.html * *****************************************************************************/ package org.compiere.util; import java.io.Serializable; import org.compiere.db.CallableStatementProxy; import org.compiere.db.PreparedStatementProxy; import org.compiere.db.StatementProxy; /** * Statement Value Object for statement proxy. * * @author Jorg Janke * @version $Id: CStatementVO.java,v 1.2 2006/07/30 00:54:35 jjanke Exp $ * @see StatementProxy * @see PreparedStatementProxy * @see CallableStatementProxy */ public class CStatementVO implements Serializable { /** * VO Constructor * @param resultSetType - ResultSet.TYPE_FORWARD_ONLY, ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.TYPE_SCROLL_SENSITIVE * @param resultSetConcurrency - ResultSet.CONCUR_READ_ONLY or ResultSet.CONCUR_UPDATABLE */ public CStatementVO (int resultSetType, int resultSetConcurrency) { setResultSetType(resultSetType); setResultSetConcurrency(resultSetConcurrency); } // CStatementVO /** * VO Constructor * @param resultSetType - ResultSet.TYPE_FORWARD_ONLY, ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.TYPE_SCROLL_SENSITIVE * @param resultSetConcurrency - ResultSet.CONCUR_READ_ONLY or ResultSet.CONCUR_UPDATABLE * @param sql sql */ public CStatementVO (int resultSetType, int resultSetConcurrency, String sql) { this (resultSetType, resultSetConcurrency); setSql(sql); } // CStatementVO /** Serialization Info **/ static final long serialVersionUID = -3393389471515956399L; /** Type */ private int m_resultSetType; /** Concurrency */ private int m_resultSetConcurrency; /** SQL Statement */ private String m_sql; /** Transaction Name **/ private String m_trxName = null; /** * String representation * @return info */ public String toString() { StringBuilder sb = new StringBuilder("CStatementVO["); sb.append("SQL="+getSql()); if (m_trxName != null) sb.append(" TrxName=" + m_trxName); sb.append("]"); return sb.toString(); } // toString /** * Get SQL * @return sql */ public String getSql() { return m_sql; } // getSql /** * Set SQL. * Replace ROWID with TRIM(ROWID) for remote SQL * to convert into String as ROWID is not serialized * @param sql sql */ public void setSql(String sql) { m_sql = sql; } // setSql /** * Get ResultSet Concurrency * @return rs concurrency */ public int getResultSetConcurrency() { return m_resultSetConcurrency; } /** * Get ResultSet Type * @return rs type */ public int getResultSetType() { return m_resultSetType; } /** * Set ResultSet Type * @param resultSetType type */ public void setResultSetType(int resultSetType) { m_resultSetType = resultSetType; } /** * Set ResultSet Concurrency * @param resultSetConcurrency concurrency */ public void setResultSetConcurrency(int resultSetConcurrency) { m_resultSetConcurrency = resultSetConcurrency; } /** * @return transaction name */ public String getTrxName() { return m_trxName; } /** * Set transaction name * @param trxName */ public void setTrxName(String trxName) { m_trxName = trxName; } } // CStatementVO