Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members  

TConnectionData.java

00001 /*
00002 *  Name:      TConnectionData.java
00003 *  Author:    Rafael Jesus Alcantara Perez
00004 *  Summary:   Class for connection data.
00005 *  Date:      $Date: 2003/06/24 23:29:04 $
00006 *  Revision:  $Revision: 1.2 $
00007 *
00008 *  Copyright (C) 2002  Rafael Jesus Alcantara Perez <rafa@dedalo-ing.com>
00009 *
00010 *  This program is free software; you can redistribute it and/or modify
00011 *  it under the terms of the GNU General Public License as published by
00012 *  the Free Software Foundation; either version 2 of the License, or
00013 *  (at your option) any later version.
00014 *
00015 *  This program is distributed in the hope that it will be useful,
00016 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00017 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018 *  GNU General Public License for more details.
00019 *
00020 *  You should have received a copy of the GNU General Public License
00021 *  along with this program; if not, write to the Free Software
00022 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
00023 *  MA 02111-1307, USA.
00024 */
00025 
00027 package org.uesqlc;
00028 
00029 import java.sql.Connection;
00030 import java.sql.ResultSet;
00031 import java.util.Hashtable;
00032 
00033 
00035 public class TConnectionData
00036 {
00037 
00039   private Connection   tConnection;
00040 
00042   private Hashtable   tResultSetHashtable;
00043 
00045   public String   yHostName;
00046 
00048   public String   ySchemaName;
00049 
00051   public String   yUserName;
00052 
00054   public String   yUserPassword;
00055 
00056 
00057   //
00058   //  C O N S T R U C T O R S
00059   //
00060 
00061   public TConnectionData (Connection tCONNECTION)
00062   {
00063     tConnection         = tCONNECTION;
00064     tResultSetHashtable = new Hashtable();
00065   }
00066 
00072   public void bind (final String kyCURSOR_NAME, ResultSet tRESULT_SET)
00073   {
00074     tResultSetHashtable.put (kyCURSOR_NAME, tRESULT_SET);
00075   }
00076 
00081   public void unbind (final String kyCURSOR_NAME)
00082   {
00083     tResultSetHashtable.remove (kyCURSOR_NAME);
00084   }
00085 
00086 
00087   //
00088   //  S E L E C T O R S
00089   //
00090 
00091   public Connection getConnection()
00092   {
00093     return tConnection;
00094   }
00095 
00101   public ResultSet getCursor (final String kyCURSOR_NAME)
00102   {
00103     return (ResultSet) tResultSetHashtable.get (kyCURSOR_NAME);
00104   }
00105 
00106 }  // class TConnectionData

Generated on Mon Oct 13 02:40:10 2003 for UESQLC by doxygen1.2.18