|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
The JournalService interface provides the public abstract methods that are used when working with any journal service. Each class that includes the JournalService interface must implement all of these methods.
Method Summary | |
int |
addRecord(Context aContext,
HashtableFormat aHashtableFormat)
Adds a record into the electronic journal database table using the data available in aContext. |
int |
addRecord(Context aContext,
java.lang.String aFormatName)
Adds a record into the electronic journal. |
int |
addRecord(Hashtable aDataHashtable)
Adds a record into the journal table with the data in aDataHashtable. |
void |
close()
Closes the journal, which means that no database operation can be done with this journal instance. |
void |
commit()
Commits all changes to the database. |
boolean |
getAutoCommit()
Returns the autoCommit attribute value. |
Hashtable |
getColumnsTable()
Returns the columnsTable attribute value of the current journal. |
Vector |
getEntities()
Retrieves all entities from the Database. |
java.lang.String |
getJDBCDriver()
Returns the value of the attribute that keeps the name of the JDBC Driver being used by the service. |
int |
getNumberOfGenerations()
Returns the number of journal generations for the current schema |
java.lang.String |
getSchemaName()
Returns the schemaName attribute value. |
java.lang.String |
getTableName()
Returns the current journal tableName attribute value. |
boolean |
isActive()
Answers whether the journal instance is ready to request database operations or not. |
boolean |
isCreateSchema()
Answers whether a schema has been created for the journal schema in the database. |
void |
loadDriver()
Loads a user-defined default JDBC Driver. |
void |
loadDriver(java.lang.String aDriverName)
Loads the JDBC Driver specified in the method argument. |
void |
open()
Decides which table is going to be the current journal table and prepares the journal instance to start working with it. |
void |
open(java.lang.String anEntity,
int aGeneration)
Opens the journal service with an entity and a generation number |
void |
open(java.lang.String aSchemaName,
java.lang.String anEntity,
int aGeneration)
Opens the journal service with an specific shema, an entity and a generation number |
void |
openForEntity(java.lang.String anEntity)
Decides which is going to be the current journal table for entity anEntity. |
void |
openForEntity(java.lang.String anEntity,
java.lang.String aSchemaName)
Decides which is going to be the current journal table for entity anEntity. |
void |
openForSchema(java.lang.String aSchemaName)
Decides which table is going to be the current journal table in the schema aSchemaName and prepares the journal instance to start working with it. |
int |
queryLastRecordNumber()
Gets the last record number from the journal table |
Hashtable |
retrieveLastRecord()
Retrieves the last record from the journal table. |
void |
retrieveLastRecord(Context aContext,
HashtableFormat aHashtableFormat)
Retrieves the last record from the current journal table and updates the context aContext with the retrieved values. |
void |
retrieveLastRecord(Context aContext,
java.lang.String aFormatName)
Retrieves the last record from the journal table and updates the context aContext with the retrieved values. |
Vector |
retrieveLastRecords(int aNumber)
Returns the last aNumber records from the journal table. |
void |
retrieveLastRecords(int aNumber,
Context aContext,
HashtableIndexedCollectionFormat anOutputFormat)
Retrieves the last aNumber records from the journal table and unformats them into the context aContext using the formatter anOutputFormat. |
void |
retrieveLastRecords(int aNumber,
Context aContext,
java.lang.String anOutputFormatName)
Retrieves the last aNumber records from the journal table and unformats them into the context aContext using the formatter named anOutputFormatName. |
Hashtable |
retrieveRecord(int aRecordNumber)
Retrieves the record from the journal table that is identified by aRecordNumber. |
void |
retrieveRecord(int aRecordNumber,
Context aContext,
HashtableFormat aHashtableFormat)
Updates the context aContext with the data in the record in the current journal table that is identified by aRecordNumber. |
void |
retrieveRecord(int aRecordNumber,
Context aContext,
java.lang.String aFormatName)
Updates the context aContext with the data in the record in the current journal table that is identified by aRecordNumber. |
Vector |
retrieveRecords(java.lang.String aSearchCondition)
Retrieves all of the records from the journal table that match the search condition. |
void |
retrieveRecords(java.lang.String aSearchCondition,
Context aContext,
HashtableIndexedCollectionFormat anOutputFormat)
Retrieves all the records within the current journal that match aSearchCondition. |
void |
retrieveRecords(java.lang.String aSearchCondition,
Context aContext,
java.lang.String anOutputFormatName)
Retrieves all the records within the current journal that match aSearchCondition. |
Vector |
retrieveRecords(java.lang.String aSearchCondition,
Vector aColumnsVector)
Retrieves the columns in aColumnsVector of all the records within the journal table that match the search condition. |
void |
retrieveRecords(java.lang.String aSearchCondition,
Vector aColumnsVector,
Context aContext,
HashtableIndexedCollectionFormat anOutputFormat)
Retrieves the columns in aColumnsVector of all the records within the current journal that match aSearchCondition. |
void |
retrieveRecords(java.lang.String aSearchCondition,
Vector aColumnsVector,
Context aContext,
java.lang.String anOutputFormatName)
Retrieves the columns in aColumnsVector of all the records within the current journal that match aSearchCondition. |
void |
rollback()
Rolls back all database changes. |
void |
setAutoCommit(boolean aBoolean)
Sets the autoCommit attribute value to aBoolean. |
void |
setCreateSchema(boolean newCreateSchema)
Sets the createSchema attribute that keeps information about the existence of a schema in the database keeping the journal tables. |
void |
setEntity(java.lang.String anEntityName)
Sets the entityName attribute value. |
void |
setJDBCDriver(java.lang.String newJDBCDriver)
Sets the value of the attribute that keeps the name of the JDBC Driver being used by the service. |
void |
setSchemaName(java.lang.String aSchemaName)
Sets the schemaName attribute to aSchemaName. |
int |
updateLastRecord(Context aContext,
HashtableFormat aHashtableFormat)
Updates the last record of the current journal table with the data in aContext. |
int |
updateLastRecord(Context aContext,
HashtableFormat aHashtableFormat,
Vector aColumnsVector)
Updates the columns specified in aColumnsVector for the last record of the current journal table. |
int |
updateLastRecord(Context aContext,
java.lang.String aFormatName)
Updates the last record of the journal table with the data obtained by formatting the context aContext with the formatter identified by aFormatName. |
int |
updateLastRecord(Context aContext,
java.lang.String aFormatName,
Vector aColumnsVector)
Updates the columns in aColumnsVector for the last record of the current journal table. |
int |
updateLastRecord(Hashtable aDataHashtable)
Updates the last record of the journal table with the data in aDataHashtable. |
int |
updateLastRecord(Hashtable aDataHashtable,
Vector aColumnsVector)
Updates the columns in aColumnsVector for the last record of the current journal table with the data in aDataHashtable. |
int |
updateRecord(int aRecordNumber,
Context aContext,
HashtableFormat aHashtableFormat)
Updates the record with the record identification in the database aRecordNumber. |
int |
updateRecord(int aRecordNumber,
Context aContext,
HashtableFormat aHashtableFormat,
Vector aColumnsVector)
Updates the columns in aColumnsVector for the record identified by aRecordNumber within the journal table. |
int |
updateRecord(int aRecordNumber,
Context aContext,
java.lang.String aFormatName)
Updates the record identified by aRecordNumber within the journal table with the data obtained by formatting the context aContext with the formatter identified by aFormatName. |
int |
updateRecord(int aRecordNumber,
Context aContext,
java.lang.String aFormatName,
Vector aColumnsVector)
Updates the columns in aColumnsVector for the record identified by aRecordNumber within the journal table. |
int |
updateRecord(int aRecordNumber,
Hashtable aDataHashtable)
Updates the record identified by aRecordNumber within the journal table with the data contained in aDataHashtable. |
int |
updateRecord(int aRecordNumber,
Hashtable aDataHashtable,
Vector aColumnsVector)
Updates the columns specified in aColumnsVector, for the record identified by aRecordNumber within the journal table, with the data provided in aDataHashtable. |
int |
updateRecords(java.lang.String aSearchCondition,
Context aContext,
HashtableFormat aHashtableFormat)
Updates all of the current journal table records that match the search condition passed as an argument with the data obtained by formatting aContext using the journal format aHashtableFormat. |
int |
updateRecords(java.lang.String aSearchCondition,
Context aContext,
HashtableFormat aHashtableFormat,
Vector aColumnsVector)
Updates the columns specified in aColumnsVector for all the current journal table records that match the search condition passed as an argument, with the data obtained by formatting aContext with the journal formatter aHashtableFormat. |
int |
updateRecords(java.lang.String aSearchCondition,
Context aContext,
java.lang.String aFormatName)
Updates all of the journal table records that match the search condition with the data obtained by formatting the context aContext with the formatter identified by aFormatName. |
int |
updateRecords(java.lang.String aSearchCondition,
Context aContext,
java.lang.String aFormatName,
Vector aColumnsVector)
Updates the columns specified in aColumnsVector for all the current journal table records that match the search condition passed as an argument, with the data obtained by formatting aContext with the formatter defined by aFormatName. |
int |
updateRecords(java.lang.String aSearchCondition,
Hashtable aDataHashtable)
Updates all of the journal table records that match the search condition with the data contained in aDataHashtable. |
int |
updateRecords(java.lang.String aSearchCondition,
Hashtable aDataHashtable,
Vector aColumnsVector)
Updates the columns specified in aColumnsVector for the records matching the search condition within the journal table, with the data provided in aDataHashtable. |
Methods inherited from interface com.ibm.dse.services.jdbc.DatabaseConnect |
connect,
connect,
connect,
connect,
connect,
connect,
disconnect,
getDatabaseURL,
getDataSourceName,
getPoolName,
getSharedConnection,
isConnected,
isWaitRetry,
setDatabaseURL,
setDataSourceName,
setPoolName,
setSharedConnection,
setWaitRetry |
Method Detail |
public int addRecord(Context aContext, HashtableFormat aHashtableFormat) throws DSEInvalidArgumentException, DSEInvalidRequestException, DSEInternalErrorException, DSESQLException
aContext
- com.ibm.dse.base.ContextaHashtableFormat
- com.ibm.dse.base.HashtableFormat, the journal format to be used to build the recordpublic int addRecord(Context aContext, java.lang.String aFormatName) throws DSEInvalidArgumentException, DSEInvalidRequestException, DSEInternalErrorException, DSESQLException
aContext
- com.ibm.dse.base.ContextaFormatName
- java.lang.Stringpublic int addRecord(Hashtable aDataHashtable) throws DSEInvalidRequestException, DSEInvalidArgumentException, DSEInternalErrorException, DSESQLException
aDataHashtable
- com.ibm.dse.base.Hashtablepublic void close()
public void commit() throws DSESQLException
public boolean getAutoCommit()
public Hashtable getColumnsTable()
public Vector getEntities() throws DSESQLException, DSEInternalErrorException
public java.lang.String getJDBCDriver()
public int getNumberOfGenerations() throws DSESQLException, DSEInternalErrorException
public java.lang.String getSchemaName()
public java.lang.String getTableName()
public boolean isActive()
public boolean isCreateSchema()
public void loadDriver() throws DSEInternalErrorException
public void loadDriver(java.lang.String aDriverName) throws DSEInternalErrorException
aDriverName
- java.lang.String, the JDBC driver name (full path)public void open() throws DSEInternalErrorException, DSEInvalidRequestException, DSEInvalidArgumentException, DSESQLException
public void open(java.lang.String anEntity, int aGeneration) throws DSEInvalidRequestException, DSEInternalErrorException, DSESQLException
anEntity
- java.lang.StringaGeneration
- intpublic void open(java.lang.String aSchemaName, java.lang.String anEntity, int aGeneration) throws DSEInvalidRequestException, DSEInternalErrorException, DSESQLException
aSchemaName
- java.lang.StringanEntity
- java.lang.StringaGeneration
- intpublic void openForEntity(java.lang.String anEntity) throws DSEInternalErrorException, DSEInvalidRequestException, DSEInvalidArgumentException, DSESQLException
anEntity
- java.lang.String, the name of the entitypublic void openForEntity(java.lang.String anEntity, java.lang.String aSchemaName) throws DSEInternalErrorException, DSEInvalidRequestException, DSEInvalidArgumentException, DSESQLException
anEntity
- java.lang.String, the name of the entityaSchemaName
- java.lang.String, the name of the schemapublic void openForSchema(java.lang.String aSchemaName) throws DSEInternalErrorException, DSEInvalidRequestException, DSEInvalidArgumentException, DSESQLException
aSchemaName
- java.lang.String, the name of the journal schemapublic int queryLastRecordNumber() throws DSESQLException, DSEInternalErrorException
public Hashtable retrieveLastRecord() throws DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
public void retrieveLastRecord(Context aContext, HashtableFormat aHashtableFormat) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aContext
- com.ibm.dse.base.ContextaHashtableFormat
- com.ibm.dse.base.HashtableFormat, the format to be used to update the contextpublic void retrieveLastRecord(Context aContext, java.lang.String aFormatName) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aContext
- com.ibm.dse.base.ContextaFormatName
- java.lang.String, the name of the format to be used to update the contextpublic Vector retrieveLastRecords(int aNumber) throws DSEInternalErrorException, DSEInvalidArgumentException, DSEInvalidRequestException, DSESQLException
aNumber
- int, the number of records to be retrievedpublic void retrieveLastRecords(int aNumber, Context aContext, HashtableIndexedCollectionFormat anOutputFormat) throws DSEInternalErrorException, DSEInvalidArgumentException, DSEInvalidRequestException, DSESQLException, DSEObjectNotFoundException
aNumber
- int, the number of records to retrieveaContext
- com.ibm.dse.base.Context the context to where the retrieved records will be unformattedanOutputFormat
- com.ibm.dse.base.HashtableIndexedCollectionFormat, the formatter to unformat the retrieved recordspublic void retrieveLastRecords(int aNumber, Context aContext, java.lang.String anOutputFormatName) throws DSEInternalErrorException, DSEInvalidArgumentException, DSEInvalidRequestException, DSESQLException, DSEObjectNotFoundException
aNumber
- int, the number of records to retrieveaContext
- com.ibm.dse.base.Context the context to where the retrieved records will be unformattedanOutputFormatName
- java.lang.String, the name of the formatter to unformat the retrieved recordspublic Hashtable retrieveRecord(int aRecordNumber) throws DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aRecordNumber
- intpublic void retrieveRecord(int aRecordNumber, Context aContext, HashtableFormat aHashtableFormat) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aRecordNumber
- intaContext
- com.ibm.dse.base.ContextaHashtableFormat
- com.ibm.dse.base.HashtableFormat, the format to be used to update the contextpublic void retrieveRecord(int aRecordNumber, Context aContext, java.lang.String aFormatName) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aRecordNumber
- intaContext
- com.ibm.dse.base.ContextaFormatName
- java.lang.String, the name of the format to be used to update the contextpublic Vector retrieveRecords(java.lang.String aSearchCondition) throws DSEInternalErrorException, DSEInvalidRequestException, DSEInvalidArgumentException, DSESQLException
aSearchCondition
- java.lang.Stringpublic void retrieveRecords(java.lang.String aSearchCondition, Context aContext, HashtableIndexedCollectionFormat anOutputFormat) throws DSEInternalErrorException, DSEInvalidRequestException, DSEInvalidArgumentException, DSESQLException, DSEObjectNotFoundException
aSearchCondition
- java.lang.String, the search condition in SQL formataContext
- com.ibm.dse.base.Context the context to where the retrieved records will be unformattedanOutputFormat
- com.ibm.dse.base.HashtableIndexedCollectionFormat, the formatter to unformat the retrieved recordspublic void retrieveRecords(java.lang.String aSearchCondition, Context aContext, java.lang.String anOutputFormatName) throws DSEInternalErrorException, DSEInvalidRequestException, DSEInvalidArgumentException, DSESQLException, DSEObjectNotFoundException
aSearchCondition
- java.lang.String, the search condition in SQL formataContext
- com.ibm.dse.base.Context the context to where the retrieved records will be unformattedanOutputFormatName
- java.lang.String, the name of the formatter to unformat the retrieved recordspublic Vector retrieveRecords(java.lang.String aSearchCondition, Vector aColumnsVector) throws DSEInternalErrorException, DSEInvalidRequestException, DSEInvalidArgumentException, DSESQLException
aSearchCondition
- java.lang.String, the search condition in SQL formataColumnsVector
- com.ibm.dse.base.Vector, the vector that contains the columns to be retrievedpublic void retrieveRecords(java.lang.String aSearchCondition, Vector aColumnsVector, Context aContext, HashtableIndexedCollectionFormat anOutputFormat) throws DSEInternalErrorException, DSEInvalidRequestException, DSEInvalidArgumentException, DSESQLException, DSEObjectNotFoundException
aSearchCondition
- java.lang.String, the search condition in SQL formataColumnsVector
- com.ibm.dse.base.Vector, the vector that contains the columns to be retrievedaContext
- com.ibm.dse.base.Context the context to where the retrieved records will be unformattedanOutputFormat
- com.ibm.dse.base.HashtableIndexedCollectionFormat, the formatter to unformat the retrieved recordspublic void retrieveRecords(java.lang.String aSearchCondition, Vector aColumnsVector, Context aContext, java.lang.String anOutputFormatName) throws DSEInternalErrorException, DSEInvalidRequestException, DSEInvalidArgumentException, DSESQLException, DSEObjectNotFoundException
aSearchCondition
- java.lang.String, the search condition in SQL formataColumnsVector
- com.ibm.dse.base.Vector, the vector that contains the columns to be retrievedaContext
- com.ibm.dse.base.Context the context to where the retrieved records will be unformattedanOutputFormatName
- java.lang.String, the name of the formatter to unformat the retrieved recordspublic void rollback() throws DSESQLException
public void setAutoCommit(boolean aBoolean)
boolean
- aBooleanpublic void setCreateSchema(boolean newCreateSchema)
newCreateSchema
- booleanpublic void setEntity(java.lang.String anEntityName)
anEntityName
- java.lang.Stringpublic void setJDBCDriver(java.lang.String newJDBCDriver)
newJDBCDriver
- java.lang.Stringpublic void setSchemaName(java.lang.String aSchemaName)
aSchemaName
- java.lang.Stringpublic int updateLastRecord(Context aContext, HashtableFormat aHashtableFormat) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aContext
- com.ibm.dse.base.ContextaHashtableFormat
- com.ibm.dse.base.HashtableFormat, the format to be used to update the contextpublic int updateLastRecord(Context aContext, HashtableFormat aHashtableFormat, Vector aColumnsVector) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aContext
- com.ibm.dse.base.ContextaHashtableFormat
- com.ibm.dse.base.HashtableFormataColumnsVector
- com.ibm.dse.base.Vector, the columns to be changedpublic int updateLastRecord(Context aContext, java.lang.String aFormatName) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aContext
- com.ibm.dse.base.ContextaFormatName
- java.lang.Stringpublic int updateLastRecord(Context aContext, java.lang.String aFormatName, Vector aColumnsVector) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aContext
- com.ibm.dse.base.Context, the context with the dataaFormatName
- java.lang.String, the journal format name to be usedaColumnsVector
- com.ibm.dse.base.Vector, the columns to be changedpublic int updateLastRecord(Hashtable aDataHashtable) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aDataHashtable
- com.ibm.dse.base.Hashtablepublic int updateLastRecord(Hashtable aDataHashtable, Vector aColumnsVector) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aDataHashtable
- Hashtable, the Hashtable that contains the dataaColumnsVector
- com.ibm.dse.base.Vector, the columns to be changedpublic int updateRecord(int aRecordNumber, Context aContext, HashtableFormat aHashtableFormat) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aRecordNumber
- intaContext
- com.ibm.dse.base.ContextaHashtableFormat
- com.ibm.dse.base.HashtableFormatpublic int updateRecord(int aRecordNumber, Context aContext, HashtableFormat aHashtableFormat, Vector aColumnsVector) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aRecordNumber
- int, the number of the record to be updatedaContext
- com.ibm.dse.base.ContextaHashtableFormat
- com.ibm.dse.base.HashtableFormataColumnsVector
- com.ibm.dse.base.Vector, the columns to be changedpublic int updateRecord(int aRecordNumber, Context aContext, java.lang.String aFormatName) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aRecordNumber
- intaContext
- com.ibm.dse.base.ContextaFormatName
- java.lang.Stringpublic int updateRecord(int aRecordNumber, Context aContext, java.lang.String aFormatName, Vector aColumnsVector) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aRecordNumber
- int, the number of the record to be updatedaContext
- com.ibm.dse.base.Context, the context with the dataaFormatName
- java.lang.String, the journal format name to be usedaColumnsVector
- com.ibm.dse.base.Vector, the columns to be changedpublic int updateRecord(int aRecordNumber, Hashtable aDataHashtable) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aRecordNumber
- intaDataHashtable
- com.ibm.dse.base.Hashtablepublic int updateRecord(int aRecordNumber, Hashtable aDataHashtable, Vector aColumnsVector) throws DSEInvalidArgumentException, DSEInternalErrorException, DSEInvalidRequestException, DSESQLException
aRecordNumber
- int, the number of the record to be updatedaDataHashtable
- com.ibm.dse.base.Hashtable, the Hashtable that contains the new dataaColumnsVector
- com.ibm.dse.base.Vector, the columns to be changedpublic int updateRecords(java.lang.String aSearchCondition, Context aContext, HashtableFormat aHashtableFormat) throws DSEInvalidArgumentException, DSEInvalidRequestException, DSEInternalErrorException, DSESQLException
aSearchCondition
- java.lang.StringaContext
- com.ibm.dse.base.ContextaHashtableFormat
- com.ibm.dse.base.HashtableFormatpublic int updateRecords(java.lang.String aSearchCondition, Context aContext, HashtableFormat aHashtableFormat, Vector aColumnsVector) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aSearchCondition
- java.lang.StringaContext
- com.ibm.dse.base.ContextaHashtableFormat
- com.ibm.dse.base.HashtableFormataColumnsVector
- com.ibm.dse.base.Vector, the columns to be changedpublic int updateRecords(java.lang.String aSearchCondition, Context aContext, java.lang.String aFormatName) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aSearchCondition
- java.lang.StringaContext
- com.ibm.dse.base.ContextaFormatName
- java.lang.Stringpublic int updateRecords(java.lang.String aSearchCondition, Context aContext, java.lang.String aFormatName, Vector aColumnsVector) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aSearchCondition
- java.lang.String, the search conditionaContext
- com.ibm.dse.base.Context, the context with the dataaFormatName
- java.lang.String, the journal format name that defines the formatter to be usedaColumnsVector
- com.ibm.dse.base.Vector, the columns to be changedpublic int updateRecords(java.lang.String aSearchCondition, Hashtable aDataHashtable) throws DSEInvalidRequestException, DSEInternalErrorException, DSEInvalidArgumentException, DSESQLException
aSearchCondition
- java.lang.StringaDataHashtable
- com.ibm.dse.base.Hashtablepublic int updateRecords(java.lang.String aSearchCondition, Hashtable aDataHashtable, Vector aColumnsVector) throws DSEInvalidArgumentException, DSEInternalErrorException, DSEInvalidRequestException, DSESQLException
aSearchCondition
- java.lang.String, the search conditionaDataHashtable
- com.ibm.dse.base.Hashtable, the Hashtable that contains the new dataaColumnsVector
- com.ibm.dse.base.Vector, the columns to be changed
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |