Arch4J dataaccess 1.1
A B C D E F G I J L M N O P Q R S T U

A

add(BatchQuery) - Method in class org.arch4j.dataaccess.common.BatchQuery
Add the contents of a batch query to this one.
add(Query) - Method in class org.arch4j.dataaccess.common.BatchQuery
The add method can also be used as follows BatchQuery bquery = new BatchQuery(); String USERID_COLUMN = "UserId"; String USERNAME_COLUMN ="UserName"; String USER_TABLE = "User" Condition condition1 = new Condition( USERID_COLUMN, Condition.EQ, "01" ); Condition condition2 = new Condition( USERNAME_COLUMN, Condition.EQ, "Gandalf" ); condition1.and(condition2); update = new Update( USER_TABLE,condition1 ); bquery.add(update);
add(String, Object) - Method in class org.arch4j.dataaccess.common.Update
 
add(String, Object) - Method in interface org.arch4j.dataaccess.common.UpdatableQuery
 
add(String, Object) - Method in class org.arch4j.dataaccess.common.Insert
 
addAscending(String) - Method in class org.arch4j.dataaccess.common.OrderBy
 
addDescending(String) - Method in class org.arch4j.dataaccess.common.OrderBy
 
addMultipleStatements(String) - Method in class org.arch4j.dataaccess.common.BatchQuery
Parse a string containing multiple statements and add to the list of statements to execute.
addStatement(String) - Method in class org.arch4j.dataaccess.common.BatchQuery
Add another string statement to the query.
addTable(String) - Method in class org.arch4j.dataaccess.common.Select
Add a table to the select statement
addWhat(String) - Method in class org.arch4j.dataaccess.common.Select
 
and(Condition) - Method in class org.arch4j.dataaccess.common.Condition
 
and(String, String, Object) - Method in class org.arch4j.dataaccess.common.Condition
 
ands - Variable in class org.arch4j.dataaccess.common.Condition
 
AtomicOperationCommand - class org.arch4j.dataaccess.AtomicOperationCommand.
This class is realized to bound multiple database operations which need to execute as one atomic operation.
AtomicOperationCommand() - Constructor for class org.arch4j.dataaccess.AtomicOperationCommand
 

B

BatchQuery - class org.arch4j.dataaccess.common.BatchQuery.
This class is used as a builder for batch query .
BatchQuery() - Constructor for class org.arch4j.dataaccess.common.BatchQuery
 
BatchResult - class org.arch4j.dataaccess.common.BatchResult.
This class goes throught the values returned by calling the executeBatch method and inspects the overall of result of the batch query
BatchResult(int[]) - Constructor for class org.arch4j.dataaccess.common.BatchResult
 
beginDatabaseAction() - Method in class org.arch4j.dataaccess.TransactionalDatabaseManager
Override the base implementation of this method to add transactional behaviour.
beginDatabaseAction() - Method in class org.arch4j.dataaccess.DatabaseManager
Attempts to establish a connection to the database.
buildStatement(Connection, String, List) - Method in class org.arch4j.dataaccess.DatabaseManager
Creates a PreparedStatement object and populates it with the given parameters.

C

Condition - class org.arch4j.dataaccess.common.Condition.
 
Condition(String, boolean) - Constructor for class org.arch4j.dataaccess.common.Condition
Matches for is null if true, or is not null if false
Condition(String, String, Object) - Constructor for class org.arch4j.dataaccess.common.Condition
 
connectionManager - Variable in class org.arch4j.dataaccess.DatabaseManager
 
convertDateStringToTimestamp(String) - Static method in class org.arch4j.dataaccess.visitors.ResultSetCacheTest
 

D

DATA_ACCESS_DOMAIN - Static variable in interface org.arch4j.dataaccess.DataAccessConstants
The property that defines the domain for the data access.
DataAccessConstants - interface org.arch4j.dataaccess.DataAccessConstants.
Constant values used in this package.
DataAccessException - exception org.arch4j.dataaccess.DataAccessException.
This class is a wrapper for SQLExceptions.
DataAccessException() - Constructor for class org.arch4j.dataaccess.DataAccessException
Constructs a DataAccessException with no specified detail message or nested exception.
DataAccessException(SQLException) - Constructor for class org.arch4j.dataaccess.DataAccessException
Constructs a DataAccessException with the specified nested SQL exception.
DataAccessException(String) - Constructor for class org.arch4j.dataaccess.DataAccessException
Constructs a DataAccessException with the specified detail message.
DataAccessException(String, Throwable) - Constructor for class org.arch4j.dataaccess.DataAccessException
Constructs a DataAccessException with the specified detail message and nested exception.
DataAccessException(Throwable) - Constructor for class org.arch4j.dataaccess.DataAccessException
Constructs a DataAccessException with the specified nested exception.
DataAccessProvider - class org.arch4j.dataaccess.DataAccessProvider.
This class is the main service provider for data access services.
DataAccessProvider() - Constructor for class org.arch4j.dataaccess.DataAccessProvider
 
DataAccessProviderTest - class org.arch4j.dataaccess.DataAccessProviderTest.
This test assumes that the dataaccess.properties file exists with the following contents:
DataAccessProviderTest(String) - Constructor for class org.arch4j.dataaccess.DataAccessProviderTest
 
DatabaseManager - class org.arch4j.dataaccess.DatabaseManager.
This class is used to communicate with the data server.
DatabaseManager() - Constructor for class org.arch4j.dataaccess.DatabaseManager
Default constructor
DatabaseManagerTest - class org.arch4j.dataaccess.DatabaseManagerTest.
This test assumes that the database contains a table named TST_FOO exists with the following structure:
DatabaseManagerTest(String) - Constructor for class org.arch4j.dataaccess.DatabaseManagerTest
 
DEFAULT_CONNECTION - Static variable in interface org.arch4j.dataaccess.DataAccessConstants
Property that defines the default connection name.
Delete - class org.arch4j.dataaccess.common.Delete.
This class acts as a wrapper around delete statements It takes a table name and a Condition object in its contructor *
Delete(String, Condition) - Constructor for class org.arch4j.dataaccess.common.Delete
 
delete(String, List) - Method in class org.arch4j.dataaccess.DatabaseManager
Executes a SQL DELETE statement containing zero or more question-marked parameters and returns the number of rows affected.
domain - Variable in class org.arch4j.dataaccess.DatabaseManagerTest
 
DRIVER_PROPERTY - Static variable in interface org.arch4j.dataaccess.DataAccessConstants
The sub-property for getting the JDBC driver name.
DS_LOOKUP_NAME - Static variable in interface org.arch4j.dataaccess.DataAccessConstants
 

E

endDatabaseAction(ResultSet, Statement, Connection) - Method in class org.arch4j.dataaccess.TransactionalDatabaseManager
Override the base implementation of this method to add transactional behaviour.
endDatabaseAction(ResultSet, Statement, Connection) - Method in class org.arch4j.dataaccess.DatabaseManager
Releases the JDBC resources.
EQ - Static variable in class org.arch4j.dataaccess.common.Condition
 
evaluate() - Method in class org.arch4j.dataaccess.SQLEvaluator
 
execUpdate(String, List) - Method in class org.arch4j.dataaccess.DatabaseManager
Executes a SQL DELETE statement containing zero or more question-marked parameters and returns the number of rows affected.
execUpdate(String, List, ResultSetVisitor) - Method in class org.arch4j.dataaccess.DatabaseManager
Executes a SQL INSERT, UPDATE or DELETE statement containing zero or more question-marked parameters and returns the number of rows affected.
execute() - Method in class org.arch4j.dataaccess.AtomicOperationCommand
Implement this method to include the database operations that need to be executed.
execute(Query, ResultSetVisitor) - Method in class org.arch4j.dataaccess.DatabaseManager
This method executes a query that could be SELECT, INSERT, DELETE or UPDATE
execute(String, List, ResultSetVisitor) - Method in class org.arch4j.dataaccess.DatabaseManager
Executes a SQL SELECT, INSERT, UPDATE, or DELETE statement containing zero or more question-marked parameters.
execute(String, ResultSetVisitor) - Method in class org.arch4j.dataaccess.DatabaseManager
Executes a SQL SELECT, INSERT, UPDATE, or DELETE statement containing no parameters.
execute(String, String, List, ResultSetVisitor) - Method in class org.arch4j.dataaccess.DatabaseManager
Executes a SQL SELECT, INSERT, UPDATE, or DELETE statement specified by the given property name in the given property domain.
execute(String, String, ResultSetVisitor) - Method in class org.arch4j.dataaccess.DatabaseManager
Executes a SQL SELECT, INSERT, UPDATE, or DELETE statement specified by the given property name in the given property domain.
executeBatch(BatchQuery) - Method in class org.arch4j.dataaccess.TransactionalDatabaseManager
Extends the base class, DatabaseManager, by adding rollback functionality on failure.
executeBatch(BatchQuery) - Method in class org.arch4j.dataaccess.DatabaseManager
Note that the JDBC specification does not specify if a BatchQuery will execute as an atomic operation or not.
executeTransaction(AtomicOperationCommand) - Method in class org.arch4j.dataaccess.TransactionalDatabaseManager
Use this method to bound multiple database operations which need to execute as one atomic operation.

F

fail() - Method in class org.arch4j.dataaccess.common.BatchResult
Method failed.

G

GE - Static variable in class org.arch4j.dataaccess.common.Condition
 
getColumnNames() - Method in class org.arch4j.dataaccess.common.OrderBy
 
getConnection() - Method in class org.arch4j.dataaccess.TransactionalConnectionManager
Create a connection if this is the first action of the transaction, otherwise return the existing connection.
getDefaultManager() - Method in class org.arch4j.dataaccess.DataAccessProvider
Create a DatabaseManager for data access.
getDefaultTransactionalManager() - Method in class org.arch4j.dataaccess.DataAccessProvider
Create a TransactionalDatabaseManager for data access.
getErrorString(SQLException) - Static method in class org.arch4j.dataaccess.DataAccessException
Creates an informative error string based on the given SQLException, following the chain of additional exceptions (if any).
getIsUpper() - Method in class org.arch4j.dataaccess.common.Condition
 
getJoinClause() - Method in class org.arch4j.dataaccess.common.Select
 
getManagerFor(String) - Method in class org.arch4j.dataaccess.DataAccessProvider
Create a DatabaseManager for data access.
getManagerFor(String, String) - Method in class org.arch4j.dataaccess.DataAccessProvider
 
getManagerFor(String, String, String) - Method in class org.arch4j.dataaccess.DataAccessProvider
Deprecated. Use other getDefaultManager constructor.
getNumberOfRows() - Method in class org.arch4j.dataaccess.visitors.ResultSetCounter
Gets the number of rows processed.
getNumberOfRows() - Method in class org.arch4j.dataaccess.visitors.ResultSetCache
Number of rows in the cache.
getNumberOfRowsAffected() - Method in class org.arch4j.dataaccess.visitors.ResultSetCache
Gets the number of rows affected by the sql.
getNumberOfRowsAffected() - Method in class org.arch4j.dataaccess.visitors.ResultSetAdapter
Gets the number of rows affected by the sql.
getOrderBy() - Method in class org.arch4j.dataaccess.common.Select
 
getProvider() - Static method in class org.arch4j.dataaccess.DataAccessProvider
 
getQueries() - Method in class org.arch4j.dataaccess.common.BatchQuery
Returns the queries.
getResult() - Method in class org.arch4j.dataaccess.visitors.IntResultSetAdapter
Returns the result of the query.
getResults() - Method in class org.arch4j.dataaccess.common.BatchResult
Returns the results.
getTransactionalConnectionManager(ConnectionManager) - Static method in class org.arch4j.dataaccess.TransactionalConnectionManager
Provides singleton instances of this class per thread.
getTransactionalManagerFor(String) - Method in class org.arch4j.dataaccess.DataAccessProvider
Create a TransactionalDatabaseManager for data access.
getWhereClause() - Method in class org.arch4j.dataaccess.common.Select
Get a reference to the where clause
GT - Static variable in class org.arch4j.dataaccess.common.Condition
 

I

IN - Static variable in class org.arch4j.dataaccess.common.Join
 
IN - Static variable in class org.arch4j.dataaccess.common.Condition
 
Insert - class org.arch4j.dataaccess.common.Insert.
This class acts as a wrapper around insert statements It takes a table name and a Condition object in its contructor A typical usage would be Insert ins = new Insert ("MyTable")
Insert(String) - Constructor for class org.arch4j.dataaccess.common.Insert
 
insert(String, List) - Method in class org.arch4j.dataaccess.DatabaseManager
Executes a SQL INSERT statement containing zero or more question-marked parameters and returns the number of rows affected.
IntResultSetAdapter - class org.arch4j.dataaccess.visitors.IntResultSetAdapter.
This class is a convenience result set adapter for when only one int value will be returned.
IntResultSetAdapter() - Constructor for class org.arch4j.dataaccess.visitors.IntResultSetAdapter
 
isDistinct() - Method in class org.arch4j.dataaccess.common.Select
 
isErrorValue() - Method in class org.arch4j.dataaccess.visitors.IntResultSetAdapter
Returns whether the result is the unset/error value.
isMarkedForRollback() - Method in class org.arch4j.dataaccess.TransactionalDatabaseManager
Knows if the current or just executed transaction is marked for rollback.
isMarkedForRollback() - Method in class org.arch4j.dataaccess.TransactionalConnectionManager
Knows if the current or just executed transaction is marked for rollback.

J

Join - class org.arch4j.dataaccess.common.Join.
This class is a helper for creating join conditons The following types of joins are supported at this time 1) The basic join also called as JOIN or INNER JOIN 2) The Left Join also called as LEFT OUTER JOIN 3) The Right Join also called as RIGHT OUTER JOIN
Join(String, String, JoinCondition) - Constructor for class org.arch4j.dataaccess.common.Join
 
JoinCondition - class org.arch4j.dataaccess.common.JoinCondition.
This class is the condition to be used in Join Clauses
JoinCondition(String, String, Object) - Constructor for class org.arch4j.dataaccess.common.JoinCondition
 

L

LE - Static variable in class org.arch4j.dataaccess.common.Condition
 
lhs - Variable in class org.arch4j.dataaccess.common.Condition
 
LIKE - Static variable in class org.arch4j.dataaccess.common.Condition
 
loggingCategory - Static variable in class org.arch4j.dataaccess.TransactionalDatabaseManager
The logging category.
loggingCategory - Static variable in class org.arch4j.dataaccess.DatabaseManager
The logging category.
LOUT - Static variable in class org.arch4j.dataaccess.common.Join
 
LT - Static variable in class org.arch4j.dataaccess.common.Condition
 

M

main(String[]) - Static method in class org.arch4j.dataaccess.SQLEvaluator
 
markForRollback() - Method in class org.arch4j.dataaccess.TransactionalDatabaseManager
If this method is called at any time the transaction will rollback when endTransaction() is called.
markForRollback() - Method in class org.arch4j.dataaccess.TransactionalConnectionManager
If this method is called at any time the transaction will rollback when endTransaction() is called.
MAX_CONNECTIONS - Static variable in interface org.arch4j.dataaccess.DataAccessConstants
The sub-property for getting the maximum number of connections.

N

NE - Static variable in class org.arch4j.dataaccess.common.Condition
 
newWithAscending(String) - Static method in class org.arch4j.dataaccess.common.OrderBy
Create a new OrderBy clause, using the given field name as the first sort field.
newWithDescending(String) - Static method in class org.arch4j.dataaccess.common.OrderBy
Create a new OrderBy clause, using the given field name as the first sort field.
notifyListener(ResultSet, ResultSetVisitor) - Method in class org.arch4j.dataaccess.DatabaseManager
Loop through the result set notifying the listener as each row is processed.

O

operator - Variable in class org.arch4j.dataaccess.common.Condition
 
or(Condition) - Method in class org.arch4j.dataaccess.common.Condition
 
or(String, String, Object) - Method in class org.arch4j.dataaccess.common.Condition
 
OrderBy - class org.arch4j.dataaccess.common.OrderBy.
This class is equivalent to an ORDER BY Clause
OrderBy() - Constructor for class org.arch4j.dataaccess.common.OrderBy
 
org.arch4j.dataaccess - package org.arch4j.dataaccess
Data Access
org.arch4j.dataaccess.common - package org.arch4j.dataaccess.common
 
org.arch4j.dataaccess.visitors - package org.arch4j.dataaccess.visitors
 
ors - Variable in class org.arch4j.dataaccess.common.Condition
 

P

pass() - Method in class org.arch4j.dataaccess.common.BatchResult
 
PASSWORD_PROPERTY - Static variable in interface org.arch4j.dataaccess.DataAccessConstants
The sub-property for getting the JDBC password.
printOutput() - Method in class org.arch4j.dataaccess.visitors.ResultSetPrinter
Print the contents of the buffer to the output stream.
processNextRow(ResultSet) - Method in interface org.arch4j.dataaccess.ResultSetVisitor
Process the next row of the SQL query.
processNextRow(ResultSet) - Method in class org.arch4j.dataaccess.visitors.ResultSetPrinter
 
processNextRow(ResultSet) - Method in class org.arch4j.dataaccess.visitors.ResultSetCounter
Each time through the result set, add one to the count of rows.
processNextRow(ResultSet) - Method in class org.arch4j.dataaccess.visitors.ResultSetCache
Process the next row of the SQL query.
processNextRow(ResultSet) - Method in class org.arch4j.dataaccess.visitors.ResultSetAdapter
Process the next row of the SQL query.
processNextRow(ResultSet) - Method in class org.arch4j.dataaccess.visitors.IntResultSetAdapter
Process the next row of the SQL query.

Q

Query - interface org.arch4j.dataaccess.common.Query.
This interface is the base for select, update, delete and insert

R

releaseConnection() - Method in class org.arch4j.dataaccess.TransactionalConnectionManager
Release the connection.
ResultSetAdapter - class org.arch4j.dataaccess.visitors.ResultSetAdapter.
The default implementation of the ResultSetListener.
ResultSetAdapter() - Constructor for class org.arch4j.dataaccess.visitors.ResultSetAdapter
 
ResultSetCache - class org.arch4j.dataaccess.visitors.ResultSetCache.
This visitor will "cache" the values from a result set so that they may be passed around without having to keep a connection open, etc.
ResultSetCache() - Constructor for class org.arch4j.dataaccess.visitors.ResultSetCache
Constructs a new default CachedRowSet object
ResultSetCacheTest - class org.arch4j.dataaccess.visitors.ResultSetCacheTest.
 
ResultSetCacheTest(String) - Constructor for class org.arch4j.dataaccess.visitors.ResultSetCacheTest
 
ResultSetCounter - class org.arch4j.dataaccess.visitors.ResultSetCounter.
This Listener may be used to count the number of rows returned from a result set.
ResultSetCounter() - Constructor for class org.arch4j.dataaccess.visitors.ResultSetCounter
 
ResultSetPrinter - class org.arch4j.dataaccess.visitors.ResultSetPrinter.
This listener will build up text associated with the result set.
ResultSetPrinter() - Constructor for class org.arch4j.dataaccess.visitors.ResultSetPrinter
 
ResultSetVisitor - interface org.arch4j.dataaccess.ResultSetVisitor.
This listener is used to process the results of a query string or to get the number of rows affected by an insert, update, or delete.
rhs - Variable in class org.arch4j.dataaccess.common.Condition
 
ROUT - Static variable in class org.arch4j.dataaccess.common.Join
 

S

Select - class org.arch4j.dataaccess.common.Select.
This class acts as a wrapper around select statements It takes a table name and a Condition object in its contructor A typical usage would be Select sel = new Select ("MyTable", new Condition ())
Select(String) - Constructor for class org.arch4j.dataaccess.common.Select
 
Select(String, Condition) - Constructor for class org.arch4j.dataaccess.common.Select
 
Select(String, Condition, OrderBy) - Constructor for class org.arch4j.dataaccess.common.Select
 
Select(String, Join, Condition) - Constructor for class org.arch4j.dataaccess.common.Select
 
Select(String, Join, Condition, OrderBy) - Constructor for class org.arch4j.dataaccess.common.Select
 
select(String, List, ResultSetVisitor) - Method in class org.arch4j.dataaccess.DatabaseManager
Executes a SQL SELECT query containing no parameters.
select(String, ResultSetVisitor) - Method in class org.arch4j.dataaccess.DatabaseManager
Executes a SQL SELECT query containing no parameters.
setDistinct(boolean) - Method in class org.arch4j.dataaccess.common.Select
 
setIsUpper(boolean) - Method in class org.arch4j.dataaccess.common.Condition
 
setJoinClause(Join) - Method in class org.arch4j.dataaccess.common.Select
 
setNumberOfRowsAffected(int) - Method in interface org.arch4j.dataaccess.ResultSetVisitor
Sets the number of rows affected by the sql.
setNumberOfRowsAffected(int) - Method in class org.arch4j.dataaccess.visitors.ResultSetCache
Sets the number of rows affected by the sql.
setNumberOfRowsAffected(int) - Method in class org.arch4j.dataaccess.visitors.ResultSetAdapter
Sets the number of rows affected by the sql.
setOrderBy(OrderBy) - Method in class org.arch4j.dataaccess.common.Select
 
setUp() - Method in class org.arch4j.dataaccess.DatabaseManagerTest
 
setUp() - Method in class org.arch4j.dataaccess.visitors.ResultSetCacheTest
 
setUpData() - Method in class org.arch4j.dataaccess.DatabaseManagerTest
 
setUpData(DatabaseManager) - Method in class org.arch4j.dataaccess.DataAccessProviderTest
 
setWhereClause(Condition) - Method in class org.arch4j.dataaccess.common.Select
Set the where clause
SQLEvaluator - class org.arch4j.dataaccess.SQLEvaluator.
This class can be used to test out a set of database properties.
SQLEvaluator(DatabaseManager) - Constructor for class org.arch4j.dataaccess.SQLEvaluator
 
StatementQuery - class org.arch4j.dataaccess.common.StatementQuery.
This class holds on to a SQL and a list of parameters This class is a wrapper for The
StatementQuery(String) - Constructor for class org.arch4j.dataaccess.common.StatementQuery
 
StatementQuery(String, List) - Constructor for class org.arch4j.dataaccess.common.StatementQuery
This constructor would build the SQL and susbstiture the ? from the list
suite() - Static method in class org.arch4j.dataaccess.DatabaseManagerTest
 
suite() - Static method in class org.arch4j.dataaccess.visitors.ResultSetCacheTest
 

T

testBadLogicalName() - Method in class org.arch4j.dataaccess.DataAccessProviderTest
 
testDelete() - Method in class org.arch4j.dataaccess.DatabaseManagerTest
 
testExecute() - Method in class org.arch4j.dataaccess.DatabaseManagerTest
 
testExecuteProperty() - Method in class org.arch4j.dataaccess.DatabaseManagerTest
 
testInsert() - Method in class org.arch4j.dataaccess.DatabaseManagerTest
 
testInsertWithNull() - Method in class org.arch4j.dataaccess.DatabaseManagerTest
 
testResultSetCache() - Method in class org.arch4j.dataaccess.visitors.ResultSetCacheTest
 
testSelectNoParameters() - Method in class org.arch4j.dataaccess.DatabaseManagerTest
 
testSelectNoParametersUsingQueryObject() - Method in class org.arch4j.dataaccess.DatabaseManagerTest
 
testSelectWithParameters() - Method in class org.arch4j.dataaccess.DatabaseManagerTest
 
testSuccessful() - Method in class org.arch4j.dataaccess.DataAccessProviderTest
 
testSuccessUserPass() - Method in class org.arch4j.dataaccess.DataAccessProviderTest
 
testUpdate() - Method in class org.arch4j.dataaccess.DatabaseManagerTest
 
testValidDriverBadURL() - Method in class org.arch4j.dataaccess.DataAccessProviderTest
 
toString() - Method in class org.arch4j.dataaccess.common.Update
 
toString() - Method in class org.arch4j.dataaccess.common.StatementQuery
 
toString() - Method in class org.arch4j.dataaccess.common.Select
 
toString() - Method in class org.arch4j.dataaccess.common.OrderBy
 
toString() - Method in class org.arch4j.dataaccess.common.JoinCondition
 
toString() - Method in class org.arch4j.dataaccess.common.Join
 
toString() - Method in class org.arch4j.dataaccess.common.Insert
 
toString() - Method in class org.arch4j.dataaccess.common.Delete
 
toString() - Method in class org.arch4j.dataaccess.common.Condition
 
toString() - Method in class org.arch4j.dataaccess.common.BatchQuery
Returns a String object representing this BatchQuery.
TransactionalConnectionManager - class org.arch4j.dataaccess.TransactionalConnectionManager.
This class allows for transactional bounding around multiple calls over a single database connection.
TransactionalDatabaseManager - class org.arch4j.dataaccess.TransactionalDatabaseManager.
This extention of the DatabaseManager class adds joinable transaction functionality.

U

UpdatableQuery - interface org.arch4j.dataaccess.common.UpdatableQuery.
Extends the Query interface and adds an add method to be used by queries such as insert and update.
Update - class org.arch4j.dataaccess.common.Update.
This class acts as a wrapper around Update statements It takes a table name and a Condition object in its constructor
Update(String, Condition) - Constructor for class org.arch4j.dataaccess.common.Update
 
update(String, List) - Method in class org.arch4j.dataaccess.DatabaseManager
Executes a SQL UPDATE statement containing zero or more question-marked parameters and returns the number of rows affected.
URL_PROPERTY - Static variable in interface org.arch4j.dataaccess.DataAccessConstants
The sub-property for getting the JDBC url.
USE_ARCH4J_POOL - Static variable in interface org.arch4j.dataaccess.DataAccessConstants
The property that defines if the pooling provided by arch4j is required or not The values are true and false
USERNAME_PROPERTY - Static variable in interface org.arch4j.dataaccess.DataAccessConstants
The sub-property for getting the JDBC username.

A B C D E F G I J L M N O P Q R S T U
Arch4J dataaccess 1.1

Copyright © 2000-2004 SpiderLogic, a service of Wipfli Ullrich Bertelson LLP.