com.esri.sde.sdk.client
Class SeDBTune

java.lang.Object
  extended by com.esri.sde.sdk.client.SeDBTune

public final class SeDBTune
extends java.lang.Object

Represents an XML Tag.


Nested Class Summary
static class SeDBTune.ErrorData
           
static class SeDBTune.Keyword
           
static class SeDBTune.Params
           
 
Constructor Summary
SeDBTune(SeConnection conn)
           
 
Method Summary
 void alter(SeDBTune.Keyword[] keywordList, SeDBTune.ErrorData errData)
          Alter values of DBTUNE table.
 void deleteData(java.lang.String keyword, java.lang.String paramName)
          Delete the DBTUNE table data.
 java.lang.String[] getKeywordList()
          Gets all DBTUNE table keywords.
 SeDBTune.Keyword[] getList()
          Get DBTUNE table information.
 SeDBTune.Keyword[] getList(java.lang.String keyword, java.lang.String parameter)
          Get DBTUNE table information.
 java.lang.String[] getParameterList()
          Gets all DBTUNE table keywords.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SeDBTune

public SeDBTune(SeConnection conn)
Method Detail

getList

public SeDBTune.Keyword[] getList()
                           throws SeException
Get DBTUNE table information.

Returns:
Keyword[]
Throws:
SeException

getList

public SeDBTune.Keyword[] getList(java.lang.String keyword,
                                  java.lang.String parameter)
                           throws SeException
Get DBTUNE table information. This function retrieves a list of dbtune table data. The resulting list is based on the input values for "keyword" and "parameter" arguments. If the arguments for "parameter" is specified, then the value for "keyword" must be specified too. It works in the following way: If arguments for "parameter" is NOT specified but the values for "keyword" specified, then all parameter values for that keyword will be returned. If both values are NULL, the entire dbtune table data will be returned.

Parameters:
keyword - String
parameter - String
Returns:
Keyword[]
Throws:
SeException

getKeywordList

public java.lang.String[] getKeywordList()
                                  throws SeException
Gets all DBTUNE table keywords. This method retrieves a list of all "keyword names" found in the DBTUNE table.

Returns:
String[] The list of keyword names.
Throws:
SeException

getParameterList

public java.lang.String[] getParameterList()
                                    throws SeException
Gets all DBTUNE table keywords. This method retrieves a list of all "keyword names" found in the DBTUNE table.

Returns:
String[] The list of keyword names.
Throws:
SeException

alter

public void alter(SeDBTune.Keyword[] keywordList,
                  SeDBTune.ErrorData errData)
           throws SeException
Alter values of DBTUNE table. This function alter values of DBTUNE table with the input values from SE_DBTUNEKEYWORD structure list.

Parameters:
keywordList - List of DBTUNE table data.
Throws:
SeException

deleteData

public void deleteData(java.lang.String keyword,
                       java.lang.String paramName)
                throws SeException
Delete the DBTUNE table data. This function delete a data for a given "keyword", "parameter" combination OR all data for a particular "keyword". This will be determined on the basis of supplied input data.

Parameters:
keyword - String DBTUNE keyword name.
paramName - String DBTUNE parameter name.
Throws:
SeException