Serialized Form


Package org.objectweb.cjdbc.controller.authentication

Class org.objectweb.cjdbc.controller.authentication.AbstractDatabaseUser extends java.lang.Object implements Serializable

Serialized Fields

login

java.lang.String login

password

java.lang.String password

Class org.objectweb.cjdbc.controller.authentication.AuthenticationManagerException extends CJDBCException implements Serializable

Class org.objectweb.cjdbc.controller.authentication.AuthenticationManagerTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.controller.authentication.DatabaseBackendUser extends AbstractDatabaseUser implements Serializable

Serialized Fields

backendName

java.lang.String backendName

Class org.objectweb.cjdbc.controller.authentication.DatabaseBackendUserTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.controller.authentication.VirtualDatabaseUser extends AbstractDatabaseUser implements Serializable

Class org.objectweb.cjdbc.controller.authentication.VirtualDatabaseUserTest extends TestCase implements Serializable


Package org.objectweb.cjdbc.controller.backend

Class org.objectweb.cjdbc.controller.backend.DatabaseBackend extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name

driverClassName

java.lang.String driverClassName

driverCompliance

DriverCompliance driverCompliance

url

java.lang.String url

isEnabled

boolean isEnabled

schema

DatabaseSchema schema

schemaIsStatic

boolean schemaIsStatic

connectionManagers

java.util.HashMap connectionManagers

activeTransactions

java.util.Vector activeTransactions

pendingRequests

java.util.Vector pendingRequests

Class org.objectweb.cjdbc.controller.backend.DatabaseBackendMetaDataTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.controller.backend.DatabaseBackendTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.controller.backend.MockConnectionManager extends AbstractConnectionManager implements Serializable

Serialized Fields

connection

MockConnection connection
Fake connection.


isInitialized

boolean isInitialized
true if the connections have been initialized.

Class org.objectweb.cjdbc.controller.backend.MockConnectionManager.MockDatabaseMetaData extends com.mockobjects.sql.MockDatabaseMetaData implements Serializable


Package org.objectweb.cjdbc.controller.connection

Class org.objectweb.cjdbc.controller.connection.AbstractConnectionManager extends java.lang.Object implements Serializable

Serialized Fields

backendUrl

java.lang.String backendUrl

backendName

java.lang.String backendName

rLogin

java.lang.String rLogin

rPassword

java.lang.String rPassword

initialized

boolean initialized

Class org.objectweb.cjdbc.controller.connection.AbstractPoolConnectionManager extends AbstractConnectionManager implements Serializable

Serialized Fields

poolSize

int poolSize

Class org.objectweb.cjdbc.controller.connection.AbstractPoolConnectionManagerTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.controller.connection.AbstractPoolConnectionManagerTest.MockPoolConnectionManager extends AbstractPoolConnectionManager implements Serializable

Class org.objectweb.cjdbc.controller.connection.FailFastPoolConnectionManager extends AbstractPoolConnectionManager implements Serializable

Class org.objectweb.cjdbc.controller.connection.FailFastPoolConnectionManagerTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.controller.connection.RandomWaitPoolConnectionManager extends AbstractPoolConnectionManager implements Serializable

Serialized Fields

timeout

int timeout

Class org.objectweb.cjdbc.controller.connection.RandomWaitPoolConnectionManagerTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.controller.connection.SimpleConnectionManager extends AbstractConnectionManager implements Serializable

Class org.objectweb.cjdbc.controller.connection.SimpleConnectionManagerTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.controller.connection.VariablePoolConnectionManager extends AbstractPoolConnectionManager implements Serializable

Serialized Fields

initPoolSize

int initPoolSize

minPoolSize

int minPoolSize

maxPoolSize

int maxPoolSize

idleTimeout

int idleTimeout

waitTimeout

int waitTimeout

releaseTimes

java.util.Stack releaseTimes

removeIdleConnectionsThread

VariablePoolConnectionManager.RemoveIdleConnectionsThread removeIdleConnectionsThread

Class org.objectweb.cjdbc.controller.connection.VariablePoolConnectionManagerTest extends TestCase implements Serializable


Package org.objectweb.cjdbc.sql

Class org.objectweb.cjdbc.sql.AbstractRequest extends java.lang.Object implements Serializable

Serialized Fields

id

int id

sqlQuery

java.lang.String sqlQuery

sqlSkeleton

java.lang.String sqlSkeleton

login

java.lang.String login

cacheable

int cacheable

isParsed

boolean isParsed

maxRows

int maxRows

isReadOnly

boolean isReadOnly

isAutoCommit

boolean isAutoCommit

transactionId

int transactionId

timeout

int timeout

escapeProcessing

boolean escapeProcessing

Class org.objectweb.cjdbc.sql.AbstractRequestTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.sql.AbstractWriteRequest extends AbstractRequest implements Serializable

Serialized Fields

tableName

java.lang.String tableName

columns

java.util.ArrayList columns

blocking

boolean blocking

Class org.objectweb.cjdbc.sql.CreateRequest extends AbstractWriteRequest implements Serializable

Serialized Fields

table

DatabaseTable table

fromTables

java.util.ArrayList fromTables

Class org.objectweb.cjdbc.sql.CreateRequestTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.sql.DeleteRequest extends AbstractWriteRequest implements Serializable

Serialized Fields

isUnique

boolean isUnique

from

java.util.ArrayList from

whereValues

java.util.ArrayList whereValues

Class org.objectweb.cjdbc.sql.DeleteRequestTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.sql.DropRequest extends AbstractWriteRequest implements Serializable

Class org.objectweb.cjdbc.sql.DropRequestTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.sql.InsertRequest extends AbstractWriteRequest implements Serializable

Class org.objectweb.cjdbc.sql.InsertRequestTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.sql.NotImplementedException extends java.sql.SQLException implements Serializable

Class org.objectweb.cjdbc.sql.SelectRequest extends AbstractRequest implements Serializable

Serialized Fields

select

java.util.ArrayList select

from

java.util.ArrayList from

where

java.util.ArrayList where

whereValues

java.util.Hashtable whereValues

Class org.objectweb.cjdbc.sql.SelectRequestTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.sql.StoredProcedure extends AbstractRequest implements Serializable

Class org.objectweb.cjdbc.sql.UnknownRequest extends AbstractRequest implements Serializable

Class org.objectweb.cjdbc.sql.UpdateRequest extends AbstractWriteRequest implements Serializable

Serialized Fields

isUnique

boolean isUnique

equivalentInsert

java.lang.String equivalentInsert

Class org.objectweb.cjdbc.sql.UpdateRequestTest extends TestCase implements Serializable


Package org.objectweb.cjdbc.sql.schema

Class org.objectweb.cjdbc.sql.schema.AliasedDatabaseTable extends java.lang.Object implements Serializable

Serialized Fields

table

DatabaseTable table

alias

java.lang.String alias

Class org.objectweb.cjdbc.sql.schema.AliasedDatabaseTableTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.sql.schema.DatabaseColumn extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name

isUnique

boolean isUnique

type

int type

Class org.objectweb.cjdbc.sql.schema.DatabaseColumnTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.sql.schema.DatabaseSchema extends java.lang.Object implements Serializable

Serialized Fields

tables

java.util.ArrayList tables

procedures

java.util.ArrayList procedures

Class org.objectweb.cjdbc.sql.schema.DatabaseSchemaTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.sql.schema.DatabaseTable extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name

columns

java.util.ArrayList columns

Class org.objectweb.cjdbc.sql.schema.DatabaseTableTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.sql.schema.TableColumnTest extends TestCase implements Serializable


Package org.objectweb.cjdbc.driver

Class org.objectweb.cjdbc.driver.BlobTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.driver.DatabaseUser extends java.lang.Object implements Serializable

Serialized Fields

dbName

java.lang.String dbName

login

java.lang.String login

password

java.lang.String password

Class org.objectweb.cjdbc.driver.DataSource extends java.lang.Object implements Serializable

Serialized Fields

url

java.lang.String url

user

java.lang.String user

password

java.lang.String password

logWriter

java.io.PrintWriter logWriter

Class org.objectweb.cjdbc.driver.DriverTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.driver.Field extends java.lang.Object implements Serializable

Serialized Fields

scale

int scale

precision

int precision

isSigned

boolean isSigned

isSearchable

boolean isSearchable

isDefinitelyWritable

boolean isDefinitelyWritable

isWritable

boolean isWritable

isReadOnly

boolean isReadOnly

isNullable

int isNullable

isCurrency

boolean isCurrency

isCaseSensitive

boolean isCaseSensitive

isAutoIncrement

boolean isAutoIncrement

tableName

java.lang.String tableName

fieldName

java.lang.String fieldName

columnDisplaySize

int columnDisplaySize

sqlType

int sqlType

typeName

java.lang.String typeName

columnClassName

java.lang.String columnClassName

Class org.objectweb.cjdbc.driver.ReadWriteTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.driver.ResultSet extends java.lang.Object implements Serializable

Serialized Fields

currentRow

int currentRow

nbOfRows

int nbOfRows

nbOfColumns

int nbOfColumns

data

java.util.ArrayList data

fields

Field[] fields

wasNullFlag

boolean wasNullFlag

reallyResult

boolean reallyResult

columnNameToIndex

java.util.Hashtable columnNameToIndex

fullColumnNameToIndex

java.util.Hashtable fullColumnNameToIndex

resultSetType

int resultSetType

resultSetConcurrency

int resultSetConcurrency

warnings

java.sql.SQLWarning warnings

owningStatement

Statement owningStatement

updateID

long updateID

updateCount

long updateCount

fetchDirection

int fetchDirection

fetchSize

int fetchSize


Package org.objectweb.cjdbc.requestplayer

Class org.objectweb.cjdbc.requestplayer.RequestPlayerProperties extends java.util.Properties implements Serializable

Serialized Fields

configFile

java.io.File configFile
Configuration file. Default value is RequestPlayerProperties.DEFAULT_CONFIG_FILE.


traceFile

java.lang.String traceFile
Trace file.


nbRequests

int nbRequests
How many requests from the trace file should be executed (0 means the whole trace is executed).


nbClients

int nbClients
Number of clients to run in parallel to issue the requests.


timeout

int timeout
Request timeout in seconds (0 means no timeout).


databaseDriver

java.lang.String databaseDriver
Database driver.


databaseUrl

java.lang.String databaseUrl
Database URL.


databaseLogin

java.lang.String databaseLogin
Database login.


databasePassword

java.lang.String databasePassword
Database password.


connectionType

int connectionType
Connection management type used in client emulator: standard, fixed or pooling.


poolSize

int poolSize
Connection pool size. Must be greater than 0 if connection type is pooling.


Package org.objectweb.cjdbc.util

Class org.objectweb.cjdbc.util.CJDBCException extends java.lang.Exception implements Serializable

Serialized Fields

cause

java.lang.Throwable cause

Class org.objectweb.cjdbc.util.ReadPrioritaryFIFOWriteLockTest extends TestCase implements Serializable

Class org.objectweb.cjdbc.util.RollbackException extends CJDBCException implements Serializable



Copyright © 2002, 2003 - ObjectWeb Consortium - All Rights Reserved.