com.intersys.classes
Class ResultSet

java.lang.Object
  extended bycom.intersys.classes.CacheGeneric
      extended bycom.intersys.classes.CacheRootObject
          extended bycom.intersys.classes.RegisteredObject
              extended bycom.intersys.classes.SysResultSet
                  extended bycom.intersys.classes.ResultSet
All Implemented Interfaces:
ObjectHandle, Serializable

Deprecated. Use CacheQuery instead.

public class ResultSet
extends com.intersys.classes.SysResultSet

The class ResultSet is used for query results.

See Also:
Serialized Form

Constructor Summary
ResultSet(com.intersys.cache.CacheObject ref)
          Deprecated.  
ResultSet(Database factory, String sql, int idColumn)
          Deprecated. Constructor for a ResultSet object.
ResultSet(Database factory, String classname, String queryname)
          Deprecated. Constructor for a ResultSet object.
 
Method Summary
 void _classNameSet(String _class)
          Runs method _classNameSet in Cache
 Integer _containsId()
          Runs method _containsId in Cache
 void _execute(com.intersys.cache.Dataholder[] args)
           
 void _execute(String p1, String p2, String p3, String p4, String p5, String p6, String p7, String p8, String p9, String p10, String p11, String p12, String p13, String p14, String p15, String p16)
          Runs method _execute in Cache
 String _get(String name)
          Runs method _get in Cache
 Integer _getColumnCount()
          Runs method _getColumnCount in Cache
 String _getColumnHeader(Integer n)
          Runs method _getColumnHeader in Cache
 String _getColumnName(Integer n)
          Runs method _getColumnName in Cache
 String _getData(Integer n)
          Runs method _getData in Cache
 String _getDataByName(String name)
          Runs method _getDataByName in Cache
 Integer _getParamCount()
          Runs method _getParamCount in Cache
 String _getParamName(Integer n)
          Runs method _getParamName in Cache
 Integer _next(StatusCodeHolder _sc)
          Runs method _next in Cache
 void _prepare(String p1, String p2, String p3, String p4, String p5, String p6, String p7, String p8, String p9, String p10, String p11, String p12, String p13, String p14, String p15, String p16)
          Runs method _prepare in Cache
 Integer _queryIsValid()
          Runs method _queryIsValid in Cache
static void _runQuery(Database db, String ClassName, String QueryName, String p1, String p2, String p3, String p4, String p5, String p6, String p7, String p8, String p9, String p10, String p11, String p12, String p13, String p14, String p15, String p16)
          Runs method _runQuery in Cache
static void _test(Database db, String ClassName, String QueryName, String p1, String p2, String p3, String p4, String p5, String p6, String p7, String p8, String p9, String p10, String p11, String p12, String p13, String p14, String p15, String p16)
          Runs method _test in Cache
 ResultSet asJDBCResultSet()
          Deprecated.  
static void check_classNameValid(Database db)
          Verifies that indexes for property _className in zObjVal are the same as in Cache.
static void check_queryNameValid(Database db)
          Verifies that indexes for property _queryName in zObjVal are the same as in Cache.
static void check_runtimeModeValid(Database db)
          Verifies that indexes for property _runtimeMode in zObjVal are the same as in Cache.
static void checkAllFieldsValid(Database db)
          Verifies that all fields from Cache class are exposed with accessor methods in Java class and that values for indexes in zObjVal are the same as in Cache.
static void checkAllMethods(Database db)
          Verifies that all fields from Cache class are exposed with accessor methods in Java class and that values for indexes in zObjVal are the same as in Cache.
 void clearParameters()
          Deprecated. Clears the query argument list
 void close()
          Deprecated. Closes the result set and rleeases driver resources used for the executed query.
 void closeSQL()
          Deprecated. Closes query and releases all driver and database resources.
 void execute()
          Deprecated. Executes this query
 void finalize()
          Deprecated.  
 String get_className()
          Returns value of property _className
 String get_queryName()
          Returns value of property _queryName
 String get_runtimeMode()
          Returns value of property _runtimeMode
 BigDecimal getBigDecimal(int index)
          Deprecated. Get column as a BigDecimal
 BigDecimal getBigDecimal(String name)
          Deprecated. Get column as a BigDecimal
 boolean getBoolean(int index)
          Deprecated. Get column as a boolean
 boolean getBoolean(String name)
          Deprecated. Get column as a boolean
 CacheClass getCacheClass()
          Allows access metadata information about type of this object in Cache database.
static String getCacheClassName()
          Returns class name of the class ResultSet as it is in Cache Database.
 int getColumnCount()
          Deprecated. Get the number of columns in this query
 ResultSetColumn[] getColumns()
          Deprecated. Get column information for each column
 Date getDate(int index)
          Deprecated. Get column as a Date
 Date getDate(String name)
          Deprecated. Get column as a Date
 double getDouble(int index)
          Deprecated. Get column as a double
 double getDouble(String name)
          Deprecated. Get column as a double
 int getInt(int index)
          Deprecated. Get column as an int
 int getInt(String name)
          Deprecated. Get column as an int
 long getLong(int index)
          Deprecated. Get column as a long
 long getLong(String name)
          Deprecated. Get column as a long
 String getString(int index)
          Deprecated. Get column as a String
 String getString(String name)
          Deprecated. Get column as a String
 Object getSysList(int index)
          Deprecated. Get column as a List
 Object getSysList(String name)
          Deprecated. Get column as a List
 Time getTime(int index)
          Deprecated. Get column as a Time
 Time getTime(String name)
          Deprecated. Get column as a Time
 Timestamp getTimestamp(int index)
          Deprecated. Get column as a Timestamp
 Timestamp getTimestamp(String name)
          Deprecated. Get column as a Timestamp
 boolean isOpen()
          Deprecated. Returns the open/close status of this ResultSet
 boolean next()
          Deprecated. Moves the cursor to the next row in the ResultSet
 void set_className(String value)
          Returns value of property _className
 void set_queryName(String value)
          Returns value of property _queryName
 void set_runtimeMode(String value)
          Returns value of property _runtimeMode
 void setBigDecimal(int index, BigDecimal value)
          Deprecated. Bind a BigDecimal argument
 void setBoolean(int index, boolean value)
          Deprecated. Bind a boolean argument
 void setDate(int index, Date value)
          Deprecated. Bind a Date argument
 void setDouble(int index, double value)
          Deprecated. Bind a double argument
 void setInt(int index, int value)
          Deprecated. Bind an integer argument
 void setLong(int index, long value)
          Deprecated. Bind a long argument
 void setString(int index, String value)
          Deprecated. Bind a String argument
 void setSysList(int index, Object value)
          Deprecated. Bind a SysList argument
 void setTime(int index, Time value)
          Deprecated. Bind a Time argument
 void setTimestamp(int index, Timestamp value)
          Deprecated. Bind a Timestamp argument
 
Methods inherited from class com.intersys.classes.RegisteredObject
_className, _className, _constructClone, _constructClone, _constructClone, _isA, _isModified, _normalizeObject, _packageName, _validateObject, _validateObject, constructClone, constructClone, getZRef
 
Methods inherited from class com.intersys.classes.CacheRootObject
_close, castTo, equals, getDatabase, getField, getOref, getProxy, hashCode, release, releaseInternal, toString
 
Methods inherited from class com.intersys.classes.CacheGeneric
checkAllFieldsValid, checkFieldsLimited, reset
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ResultSet

public ResultSet(Database factory,
                 String classname,
                 String queryname)
          throws CacheException
Deprecated. 
Constructor for a ResultSet object. This constructor can be used to create a ResultSet from a predefined query in the specified class.

Parameters:
factory - Object Factory to use
classname - Class to run query on
queryname - Query to run

ResultSet

public ResultSet(com.intersys.cache.CacheObject ref)
          throws CacheException
Deprecated. 

ResultSet

public ResultSet(Database factory,
                 String sql,
                 int idColumn)
          throws CacheException
Deprecated. 
Constructor for a ResultSet object. Use this constructor to create a ResultSet from some dynamic SQL.

Parameters:
factory - Object factory to use
sql - Dynamic SQL query
idColumn - ID Column
Method Detail

getColumnCount

public int getColumnCount()
                   throws CacheException
Deprecated. 
Get the number of columns in this query

Returns:
Column count
Throws:
CacheException

getColumns

public ResultSetColumn[] getColumns()
                             throws CacheException
Deprecated. 
Get column information for each column

Returns:
Array of Column Information
Throws:
CacheException

finalize

public void finalize()
              throws CacheException
Deprecated. 
Throws:
CacheException

clearParameters

public void clearParameters()
Deprecated. 
Clears the query argument list


setBoolean

public void setBoolean(int index,
                       boolean value)
                throws CacheException
Deprecated. 
Bind a boolean argument

Parameters:
index - Parameter index to bind to
value - Value to bind
Throws:
CacheException

setInt

public void setInt(int index,
                   int value)
            throws CacheException
Deprecated. 
Bind an integer argument

Parameters:
index - Parameter index to bind to
value - Value to bind
Throws:
CacheException

setLong

public void setLong(int index,
                    long value)
             throws CacheException
Deprecated. 
Bind a long argument

Parameters:
index - Parameter index to bind to
value - Value to bind
Throws:
CacheException

setDate

public void setDate(int index,
                    Date value)
             throws CacheException
Deprecated. 
Bind a Date argument

Parameters:
index - Parameter index to bind to
value - Value to bind
Throws:
CacheException

setTime

public void setTime(int index,
                    Time value)
             throws CacheException
Deprecated. 
Bind a Time argument

Parameters:
index - Parameter index to bind to
value - Value to bind
Throws:
CacheException

setTimestamp

public void setTimestamp(int index,
                         Timestamp value)
                  throws CacheException
Deprecated. 
Bind a Timestamp argument

Parameters:
index - Parameter index to bind to
value - Value to bind
Throws:
CacheException

setSysList

public void setSysList(int index,
                       Object value)
                throws CacheException
Deprecated. 
Bind a SysList argument

Parameters:
index - Parameter index to bind to
value - Value to bind
Throws:
CacheException

setString

public void setString(int index,
                      String value)
               throws CacheException
Deprecated. 
Bind a String argument

Parameters:
index - Parameter index to bind to
value - Value to bind
Throws:
CacheException

setDouble

public void setDouble(int index,
                      double value)
               throws CacheException
Deprecated. 
Bind a double argument

Parameters:
index - Parameter index to bind to
value - Value to bind
Throws:
CacheException

setBigDecimal

public void setBigDecimal(int index,
                          BigDecimal value)
                   throws CacheException
Deprecated. 
Bind a BigDecimal argument

Parameters:
index - Parameter index to bind to
value - Value to bind
Throws:
CacheException

execute

public void execute()
             throws CacheException
Deprecated. 
Executes this query

Throws:
CacheException

asJDBCResultSet

public ResultSet asJDBCResultSet()
                          throws CacheException
Deprecated. 
Throws:
CacheException

next

public boolean next()
             throws CacheException
Deprecated. 
Moves the cursor to the next row in the ResultSet

Returns:
true - if the next row was successfully selected false - no more data available
Throws:
CacheException

getBoolean

public boolean getBoolean(int index)
                   throws CacheException
Deprecated. 
Get column as a boolean

Parameters:
index - Column index
Throws:
CacheException

getBoolean

public boolean getBoolean(String name)
                   throws CacheException
Deprecated. 
Get column as a boolean

Throws:
CacheException

getInt

public int getInt(int index)
           throws CacheException
Deprecated. 
Get column as an int

Parameters:
index - Column index
Throws:
CacheException

getInt

public int getInt(String name)
           throws CacheException
Deprecated. 
Get column as an int

Parameters:
name - Column name
Throws:
CacheException

getLong

public long getLong(int index)
             throws CacheException
Deprecated. 
Get column as a long

Parameters:
index - Column index
Throws:
CacheException

getLong

public long getLong(String name)
             throws CacheException
Deprecated. 
Get column as a long

Parameters:
name - Column name
Throws:
CacheException

getDate

public Date getDate(int index)
             throws CacheException
Deprecated. 
Get column as a Date

Parameters:
index - Column index
Throws:
CacheException

getDate

public Date getDate(String name)
             throws CacheException
Deprecated. 
Get column as a Date

Parameters:
name - Column name
Throws:
CacheException

getTime

public Time getTime(int index)
             throws CacheException
Deprecated. 
Get column as a Time

Parameters:
index - Column index
Throws:
CacheException

getTime

public Time getTime(String name)
             throws CacheException
Deprecated. 
Get column as a Time

Parameters:
name - Column name
Throws:
CacheException

getTimestamp

public Timestamp getTimestamp(int index)
                       throws CacheException
Deprecated. 
Get column as a Timestamp

Parameters:
index - Column index
Throws:
CacheException

getTimestamp

public Timestamp getTimestamp(String name)
                       throws CacheException
Deprecated. 
Get column as a Timestamp

Parameters:
name - Column name
Throws:
CacheException

getSysList

public Object getSysList(int index)
                  throws CacheException
Deprecated. 
Get column as a List

Parameters:
index - Column index
Throws:
CacheException

getSysList

public Object getSysList(String name)
                  throws CacheException
Deprecated. 
Get column as a List

Parameters:
name - Column name
Throws:
CacheException

getString

public String getString(int index)
                 throws CacheException
Deprecated. 
Get column as a String

Parameters:
index - Column index
Throws:
CacheException

getString

public String getString(String name)
                 throws CacheException
Deprecated. 
Get column as a String

Overrides:
getString in class CacheRootObject
Parameters:
name - Column name
Throws:
CacheException

getDouble

public double getDouble(int index)
                 throws CacheException
Deprecated. 
Get column as a double

Parameters:
index - Column index
Throws:
CacheException

getDouble

public double getDouble(String name)
                 throws CacheException
Deprecated. 
Get column as a double

Parameters:
name - Column name
Throws:
CacheException

getBigDecimal

public BigDecimal getBigDecimal(int index)
                         throws CacheException
Deprecated. 
Get column as a BigDecimal

Parameters:
index - Column index
Throws:
CacheException

getBigDecimal

public BigDecimal getBigDecimal(String name)
                         throws CacheException
Deprecated. 
Get column as a BigDecimal

Parameters:
name - Column name
Throws:
CacheException

closeSQL

public void closeSQL()
              throws CacheException
Deprecated. 
Closes query and releases all driver and database resources. Makes this object unusable.

Throws:
CacheException

close

public final void close()
                 throws CacheException
Deprecated. 
Closes the result set and rleeases driver resources used for the executed query. It is necessary to call execute() before use the result set again.

Throws:
CacheException - if any error occured while running the method.
See Also:
CacheRootObject._close()

isOpen

public boolean isOpen()
Deprecated. 
Returns the open/close status of this ResultSet

Returns:
True if the ResultSet is open

getCacheClassName

public static String getCacheClassName()
Returns class name of the class ResultSet as it is in Cache Database. Note, that this is a static method, so no object specific information can be returned. Use getCacheClass().geName() to get the class name for specific object.

Returns:
Cache class name as a String
See Also:
SysResultSet.getCacheClass(), CacheClass.getName()

getCacheClass

public CacheClass getCacheClass()
                         throws CacheException
Allows access metadata information about type of this object in Cache database. Also can be used for dynamic binding (accessing properties and calling methods without particular class known).

Overrides:
getCacheClass in class RegisteredObject
Returns:
CacheClass object for this object type.
Throws:
CacheException

checkAllFieldsValid

public static void checkAllFieldsValid(Database db)
                                throws CacheException
Verifies that all fields from Cache class are exposed with accessor methods in Java class and that values for indexes in zObjVal are the same as in Cache. It does not return anything but it thorws an exception in case of inconsistency.

Please note, that if any field is not exposed that i critical error. But if there is any inconsistncy in zObjVal indexes this is fatal and class can not work correctly and must be regenrated.

Parameters:
db - Databse used for connection. Note that if you are using multiple databases the class can be consistent with one and inconsistent with another.
Throws:
InvalidClassException - if any inconsistency is found.
CacheException - if any error occured during verification, e.g. communication error with Databse.
See Also:
InvalidPropertyException

checkAllMethods

public static void checkAllMethods(Database db)
                            throws CacheException
Verifies that all fields from Cache class are exposed with accessor methods in Java class and that values for indexes in zObjVal are the same as in Cache. It does not return anything but it thorws an exception in case of inconsistency.

Please note, that if any field is not exposed that i critical error. But if there is any inconsistncy in zObjVal indexes this is fatal and class can not work correctly and must be regenrated.

Parameters:
db - Databse used for connection. Note that if you are using multiple databases the class can be consistent with one and inconsistent with another.
Throws:
InvalidClassException - if any inconsistency is found.
CacheException - if any error occured during verification, e.g. communication error with Databse.
See Also:
InvalidPropertyException

check_classNameValid

public static void check_classNameValid(Database db)
                                 throws CacheException
Verifies that indexes for property _className in zObjVal are the same as in Cache. It does not return anything but it thorws an exception in case of inconsistency.

Please note, that if there is any inconsistncy in zObjVal indexes this is fatal and class can not work correctly and must be regenrated.

Parameters:
db - Databse used for connection. Note that if you are using multiple databases the class can be consistent with one and inconsistent with another.
Throws:
InvalidClassException - if any inconsistency is found.
CacheException - if any error occured during verification, e.g. communication error with Databse.
See Also:
SysResultSet.checkAllFieldsValid(com.intersys.objects.Database)

get_className

public String get_className()
                     throws CacheException
Returns value of property _className

Returns:
current value of _className represented as
Throws:
CacheException - if any error occured during value retrieval.

set_className

public void set_className(String value)
                   throws CacheException
Returns value of property _className

Returns:
current value of _className represented as
Throws:
CacheException - if any error occured during value retrieval.

check_queryNameValid

public static void check_queryNameValid(Database db)
                                 throws CacheException
Verifies that indexes for property _queryName in zObjVal are the same as in Cache. It does not return anything but it thorws an exception in case of inconsistency.

Please note, that if there is any inconsistncy in zObjVal indexes this is fatal and class can not work correctly and must be regenrated.

Parameters:
db - Databse used for connection. Note that if you are using multiple databases the class can be consistent with one and inconsistent with another.
Throws:
InvalidClassException - if any inconsistency is found.
CacheException - if any error occured during verification, e.g. communication error with Databse.
See Also:
SysResultSet.checkAllFieldsValid(com.intersys.objects.Database)

get_queryName

public String get_queryName()
                     throws CacheException
Returns value of property _queryName

Returns:
current value of _queryName represented as
Throws:
CacheException - if any error occured during value retrieval.

set_queryName

public void set_queryName(String value)
                   throws CacheException
Returns value of property _queryName

Returns:
current value of _queryName represented as
Throws:
CacheException - if any error occured during value retrieval.

check_runtimeModeValid

public static void check_runtimeModeValid(Database db)
                                   throws CacheException
Verifies that indexes for property _runtimeMode in zObjVal are the same as in Cache. It does not return anything but it thorws an exception in case of inconsistency.

Please note, that if there is any inconsistncy in zObjVal indexes this is fatal and class can not work correctly and must be regenrated.

Parameters:
db - Databse used for connection. Note that if you are using multiple databases the class can be consistent with one and inconsistent with another.
Throws:
InvalidClassException - if any inconsistency is found.
CacheException - if any error occured during verification, e.g. communication error with Databse.
See Also:
SysResultSet.checkAllFieldsValid(com.intersys.objects.Database)

get_runtimeMode

public String get_runtimeMode()
                       throws CacheException
Returns value of property _runtimeMode

Returns:
current value of _runtimeMode represented as
Throws:
CacheException - if any error occured during value retrieval.

set_runtimeMode

public void set_runtimeMode(String value)
                     throws CacheException
Returns value of property _runtimeMode

Returns:
current value of _runtimeMode represented as
Throws:
CacheException - if any error occured during value retrieval.

_classNameSet

public void _classNameSet(String _class)
                   throws CacheException
Runs method _classNameSet in Cache

Parameters:
_class - represented as String
Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._classNameSet(String)

_containsId

public Integer _containsId()
                    throws CacheException
Runs method _containsId in Cache

Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._containsId()

_execute

public void _execute(String p1,
                     String p2,
                     String p3,
                     String p4,
                     String p5,
                     String p6,
                     String p7,
                     String p8,
                     String p9,
                     String p10,
                     String p11,
                     String p12,
                     String p13,
                     String p14,
                     String p15,
                     String p16)
              throws CacheException
Runs method _execute in Cache

Parameters:
p1 - represented as String
p2 - represented as String
p3 - represented as String
p4 - represented as String
p5 - represented as String
p6 - represented as String
p7 - represented as String
p8 - represented as String
p9 - represented as String
p10 - represented as String
p11 - represented as String
p12 - represented as String
p13 - represented as String
p14 - represented as String
p15 - represented as String
p16 - represented as String
Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._execute(String,String,String,String,String,String,String,String,String,String,String,String,String,String,String,String)

_execute

public void _execute(com.intersys.cache.Dataholder[] args)
              throws CacheException
Throws:
CacheException

_get

public String _get(String name)
            throws CacheException
Runs method _get in Cache

Parameters:
name - represented as String
Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._get(String)

_getColumnCount

public Integer _getColumnCount()
                        throws CacheException
Runs method _getColumnCount in Cache

Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._getColumnCount()

_getColumnHeader

public String _getColumnHeader(Integer n)
                        throws CacheException
Runs method _getColumnHeader in Cache

Parameters:
n - represented as Integer
Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._getColumnHeader(Integer)

_getColumnName

public String _getColumnName(Integer n)
                      throws CacheException
Runs method _getColumnName in Cache

Parameters:
n - represented as Integer
Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._getColumnName(Integer)

_getData

public String _getData(Integer n)
                throws CacheException
Runs method _getData in Cache

Parameters:
n - represented as Integer
Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._getData(Integer)

_getDataByName

public String _getDataByName(String name)
                      throws CacheException
Runs method _getDataByName in Cache

Parameters:
name - represented as String
Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._getDataByName(String)

_getParamCount

public Integer _getParamCount()
                       throws CacheException
Runs method _getParamCount in Cache

Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._getParamCount()

_getParamName

public String _getParamName(Integer n)
                     throws CacheException
Runs method _getParamName in Cache

Parameters:
n - represented as Integer
Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._getParamName(Integer)

_next

public Integer _next(StatusCodeHolder _sc)
              throws CacheException
Runs method _next in Cache

Parameters:
_sc - represented as StatusCodeHolder
Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._next(StatusCodeHolder)

_prepare

public void _prepare(String p1,
                     String p2,
                     String p3,
                     String p4,
                     String p5,
                     String p6,
                     String p7,
                     String p8,
                     String p9,
                     String p10,
                     String p11,
                     String p12,
                     String p13,
                     String p14,
                     String p15,
                     String p16)
              throws CacheException
Runs method _prepare in Cache

Parameters:
p1 - represented as String
p2 - represented as String
p3 - represented as String
p4 - represented as String
p5 - represented as String
p6 - represented as String
p7 - represented as String
p8 - represented as String
p9 - represented as String
p10 - represented as String
p11 - represented as String
p12 - represented as String
p13 - represented as String
p14 - represented as String
p15 - represented as String
p16 - represented as String
Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._prepare(String,String,String,String,String,String,String,String,String,String,String,String,String,String,String,String)

_queryIsValid

public Integer _queryIsValid()
                      throws CacheException
Runs method _queryIsValid in Cache

Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._queryIsValid()

_runQuery

public static void _runQuery(Database db,
                             String ClassName,
                             String QueryName,
                             String p1,
                             String p2,
                             String p3,
                             String p4,
                             String p5,
                             String p6,
                             String p7,
                             String p8,
                             String p9,
                             String p10,
                             String p11,
                             String p12,
                             String p13,
                             String p14,
                             String p15,
                             String p16)
                      throws CacheException
Runs method _runQuery in Cache

Parameters:
db - represented as Database
ClassName - represented as String
QueryName - represented as String
p1 - represented as String
p2 - represented as String
p3 - represented as String
p4 - represented as String
p5 - represented as String
p6 - represented as String
p7 - represented as String
p8 - represented as String
p9 - represented as String
p10 - represented as String
p11 - represented as String
p12 - represented as String
p13 - represented as String
p14 - represented as String
p15 - represented as String
p16 - represented as String
Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._runQuery(Database,String,String,String,String,String,String,String,String,String,String,String,String,String,String,String,String,String,String)

_test

public static void _test(Database db,
                         String ClassName,
                         String QueryName,
                         String p1,
                         String p2,
                         String p3,
                         String p4,
                         String p5,
                         String p6,
                         String p7,
                         String p8,
                         String p9,
                         String p10,
                         String p11,
                         String p12,
                         String p13,
                         String p14,
                         String p15,
                         String p16)
                  throws CacheException
Runs method _test in Cache

Parameters:
db - represented as Database
ClassName - represented as String
QueryName - represented as String
p1 - represented as String
p2 - represented as String
p3 - represented as String
p4 - represented as String
p5 - represented as String
p6 - represented as String
p7 - represented as String
p8 - represented as String
p9 - represented as String
p10 - represented as String
p11 - represented as String
p12 - represented as String
p13 - represented as String
p14 - represented as String
p15 - represented as String
p16 - represented as String
Throws:
CacheException - if any error occured while running the method.
See Also:
SysResultSet._test(Database,String,String,String,String,String,String,String,String,String,String,String,String,String,String,String,String,String,String)