|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DatabaseException | |
---|---|
com.jfw.authentication | Manage user authentication, authorization and profiling. |
com.jfw.database | Interact with a database. |
com.jfw.database.metadata | Get database meta data. |
com.jfw.database.oracle | Database utilities for Oracle. |
com.jfw.examples | Examples of use of JFW classes. |
com.jfw.update | Update module. |
Uses of DatabaseException in com.jfw.authentication |
---|
Methods in com.jfw.authentication that throw DatabaseException | |
---|---|
void |
GroupServiceDB.execute(java.util.HashMap outputdata)
Execute the query. |
void |
ServicesDB.execute(java.util.HashMap outputdata)
Read service data from database. |
void |
UserAddDB.execute(java.util.HashMap outputdata)
Execute the query. |
void |
UserDataDB.execute(java.util.HashMap outputdata)
Execute the query. |
void |
UserDataUpdateDB.execute(java.util.HashMap outputdata)
Execute the query. |
void |
UserGroupAddDB.execute(java.util.HashMap outputdata)
Execute the query. |
void |
UserGroupServiceAddDB.execute(java.util.HashMap outputdata)
Execute the query. |
void |
UserServiceDB.execute(java.util.HashMap outputdata)
Execute the query. |
Uses of DatabaseException in com.jfw.database |
---|
Methods in com.jfw.database that throw DatabaseException | |
---|---|
void |
QueryGateway.close()
Release connection (if QueryGateway.isTransaction is false and
QueryGateway.resourceName not null) and
close result set and prepared statement. |
void |
QueryGateway.close(int type)
Release or close a specific type of resource. |
void |
QueryGateway.commit()
Commit the sql commands executed. |
void |
QueryGateway.commit(boolean commit)
Commit or rollback the sql commands executed. |
protected java.lang.Object |
StoredProcedureGateway.exec(boolean isQuery)
Execute the stored procedure. |
protected void |
StoredProcedureGateway.execute(java.util.HashMap outputdata)
Call method StoredProcedureGateway.execute(java.util.HashMap, boolean) . |
protected void |
StoredProcedureGateway.execute(java.util.HashMap outputdata,
boolean isQuery)
Call method StoredProcedureGateway.exec(boolean) . |
int |
QueryGateway.execute(java.lang.String queryString)
Execute a sql command different from select. |
int |
QueryGateway.execute(java.lang.String queryString,
java.util.ArrayList params)
Execute a sql command different from select. |
void |
QueryGateway.executeQuery(java.lang.String queryString)
Execute a sql command of type select. |
void |
QueryGateway.executeQuery(java.lang.String queryString,
java.util.ArrayList params)
Execute a sql command of type select. |
java.util.HashMap |
QueryGateway.getAllData()
Use method {#result2Hash(HashMap,String)}. |
void |
QueryGateway.getAllData(java.util.HashMap hashContainer)
Use method {#result2Hash(HashMap,String)}. |
void |
QueryGateway.getAllData(java.util.HashMap hashContainer,
java.lang.String key)
Use method {#result2Hash(HashMap,String,int,int)}. |
void |
QueryGateway.getAllData(java.util.HashMap hashContainer,
java.lang.String key,
int rows2Read,
int firstRow)
Use method ReadDbData.result2Hash(java.sql.ResultSet, java.util.HashMap, java.lang.String, boolean, java.lang.String, int, int) . |
protected void |
StoredProcedureGateway.getAllData(java.sql.ResultSet resultSet,
java.util.HashMap outputData)
Call the other method StoredProcedureGateway.getAllData(java.sql.ResultSet, java.util.HashMap, boolean) with default value false
for parameter escape |
protected void |
StoredProcedureGateway.getAllData(java.sql.ResultSet resultSet,
java.util.HashMap outputData,
boolean escape)
Read the result set returned by the stpred procedure and save the data in a HashMap. |
byte[] |
QueryGateway.getBlob(int indexColumn)
Return the value of a column. |
static byte[] |
ReadDbData.getBLOB(java.sql.ResultSet resultSet,
int index)
Read a column BLOB. |
static byte[] |
ReadDbData.getBLOB(java.sql.ResultSet resultSet,
java.lang.String name)
Read a column BLOB. |
byte[] |
QueryGateway.getBlob(java.lang.String nameColumn)
Return the value of a column. |
static java.lang.StringBuilder |
ReadDbData.getCLOB(java.sql.CallableStatement callable,
int index)
Read a column CLOB. |
static java.lang.StringBuilder |
ReadDbData.getCLOB(oracle.sql.CLOB clob)
Read a column CLOB. |
static java.lang.StringBuilder |
ReadDbData.getCLOB(java.sql.ResultSet resultSet,
int index)
Read a column CLOB. |
static java.lang.StringBuilder |
ReadDbData.getCLOB(java.sql.ResultSet resultSet,
java.lang.String name)
Read a column CLOB. |
java.sql.Connection |
ConnectionPool.getConnection()
Return a free permanent connection. |
protected java.sql.Connection |
StoredProcedureGateway.getConnection()
Return attribute StoredProcedureGateway.connection . |
java.lang.String |
QueryGateway.getString(int indexColumn)
Return the value of a column. |
java.lang.String |
QueryGateway.getString(java.lang.String nameColumn)
Return the value of a column. |
protected void |
StoredProcedureGateway.initialize()
Call methods to initialize resources if StoredProcedureGateway.init is false. |
boolean |
QueryGateway.next()
Return true if exist a row to read. |
static void |
ReadDbData.result2Hash(java.sql.ResultSet res,
java.util.HashMap hashContainer)
Use method ReadDbData.result2Hash(ResultSet,HashMap,String,boolean,String) to read data. |
static void |
ReadDbData.result2Hash(java.sql.ResultSet res,
java.util.HashMap hashContainer,
java.lang.String listName)
Use method ReadDbData.result2Hash(ResultSet,HashMap,String,boolean,String) to read data. |
static void |
ReadDbData.result2Hash(java.sql.ResultSet res,
java.util.HashMap hashContainer,
java.lang.String listName,
boolean escape,
java.lang.String groupBy)
Use method ReadDbData.result2Hash(ResultSet,HashMap,String,boolean,String,int,int) to read data. |
static void |
ReadDbData.result2Hash(java.sql.ResultSet res,
java.util.HashMap hashContainer,
java.lang.String listName,
boolean escape,
java.lang.String groupBy,
int rows2Read,
int firstRow)
Save all rows returned by the query in a "data container" compatible with the Parser . |
static void |
ReadDbData.result2Hash(java.sql.ResultSet res,
java.util.HashMap hashContainer,
java.lang.String listName,
int rows2Read,
int firstRow)
Use method ReadDbData.result2Hash(ResultSet,HashMap,String,boolean,String,int,int) to read data. |
static void |
ReadDbData.result2Hash(java.sql.ResultSet res,
java.util.HashMap hashContainer,
java.lang.String listName,
java.lang.String groupBy)
Use method ReadDbData.result2Hash(ResultSet,HashMap,String,boolean,String) to read data. |
void |
QueryGateway.rollback()
Rollback the sql commands executed. |
static void |
WriteDbData.setCLOB(java.sql.CallableStatement callable,
int index,
java.lang.String data)
Write to a CLOB column. |
static void |
WriteDbData.setCLOB(oracle.sql.CLOB clob,
java.lang.String data)
Write to a CLOB column. |
protected void |
StoredProcedureGateway.setInput()
Default implementation if no input parameters must be set. |
protected void |
StoredProcedureGateway.setOutput()
Default implementation if no output parameters must be set. |
Uses of DatabaseException in com.jfw.database.metadata |
---|
Methods in com.jfw.database.metadata that throw DatabaseException | |
---|---|
java.util.ArrayList |
Catalogs.get()
Gets the database catalogs. |
java.util.ArrayList |
Schemas.get()
Gets the database schemas. |
java.util.ArrayList |
TablesViews.get(java.lang.String catalogName,
java.lang.String schemaName)
Get the table or view names from a database schema. |
java.util.ArrayList |
TablesViews.getColumns(java.lang.String tableName)
Get the columns names of a table. |
java.util.ArrayList |
TablesViews.getForeignKeys(java.lang.String tableName)
Get the primary keys of a table. |
java.util.ArrayList |
TablesViews.getPrimaryKeys(java.lang.String tableName)
Get the primary keys of a table. |
Uses of DatabaseException in com.jfw.database.oracle |
---|
Methods in com.jfw.database.oracle that throw DatabaseException | |
---|---|
void |
Sequence.execute(java.util.HashMap outputdata)
Execute the query. |
static java.lang.String |
Sequence.get(java.lang.String sequence)
Return the next value of the sequence. |
Uses of DatabaseException in com.jfw.examples |
---|
Methods in com.jfw.examples that throw DatabaseException | |
---|---|
void |
SearchDB.execute(java.util.HashMap outputdata)
|
void |
Update1.execute(java.util.HashMap outputdata)
|
void |
Update2.execute(java.util.HashMap outputdata)
|
void |
MySP.myExecute(java.util.HashMap outputdata)
|
protected void |
MySP.setInput()
|
protected void |
MySP.setOutput()
|
Uses of DatabaseException in com.jfw.update |
---|
Methods in com.jfw.update that throw DatabaseException | |
---|---|
void |
AppVersionDB.execute(java.util.HashMap outputdata)
Execute the query. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |