Uses of Class
be.SIRAPRISE.client.ConnectionClosedException

Packages that use ConnectionClosedException
be.SIRAPRISE.client   
 

Uses of ConnectionClosedException in be.SIRAPRISE.client
 

Methods in be.SIRAPRISE.client that throw ConnectionClosedException
 void DBTransaction.commit()
          Commits this non-autocommit transaction.
 void DBConnection.commit()
          Deprecated. Use the commit() method of the DBTransaction object instead
 AbstractRelation DBTransaction.compileAndCacheQuery(java.lang.String query)
          Sends a query expression to the server for compilation-and-caching.
 AbstractRelation DBConnection.compileAndCacheQuery(java.lang.String query)
          Deprecated. use the compileAndCacheQuery() method from the DBTransaction instead
 AbstractRelation DBTransaction.compileQuery(java.lang.String query)
          Sends a query expression to the server for verification only.
 AbstractRelation DBConnection.compileQuery(java.lang.String query)
          Deprecated. use compileQuery() on the DBTransaction object (obtained from startTransaction()) instead.
 void DBTransaction.dbAdd(java.lang.String relvarName, DBObject o)
          Adds an entry in the named relvar (in the database the transaction is connected to), for the given object.
 void DBTransaction.dbAddAndEndTransaction(java.lang.String relvarName, DBObject o)
          Adds an entry in the named relvar (in the database the transaction is connected to), for the given object.
 void DBTransaction.dbAssert(java.lang.String relvarName, DBObject o)
          Asserts an entry in the named relvar (in the database the transaction is connected to), for the given object.
 void DBTransaction.dbAssertAndEndTransaction(java.lang.String relvarName, DBObject o)
          Asserts an entry in the named relvar (in the database the transaction is connected to), for the given object.
 void DBTransaction.dbDelete(java.lang.String relvarName, DBObject o)
          Deletes an entry in the named relvar (in the database the transaction is connected to), for the given object.
 void DBTransaction.dbDeleteAndEndTransaction(java.lang.String relvarName, DBObject o)
          Deletes an entry in the named relvar (in the database the transaction is connected to), for the given object.
 void DBTransaction.dbUnAssert(java.lang.String relvarName, DBObject o)
          Unasserts an entry in the named relvar (in the database the transaction is connected to), for the given object.
 void DBTransaction.dbUnAssertAndEndTransaction(java.lang.String relvarName, DBObject o)
          Unasserts an entry in the named relvar (in the database the transaction is connected to), for the given object.
 void DBTransaction.dbUpdate(java.lang.String relvarName, UpdatableDBObject o)
          Updates an entry in the named relvar (in the database the transaction is connected to), for the given object.
 void DBTransaction.dbUpdateAndEndTransaction(java.lang.String relvarName, UpdatableDBObject o)
          Updates an entry in the named relvar (in the database the transaction is connected to), for the given object.
 void DBTransaction.end(boolean commit)
          Ends the transaction, issuing either a commit or a rollback.
 void DBConnection.endTransaction(boolean commit)
          Deprecated. instead, use end() on the DBTransaction object obtained from startTransaction().
 AbstractRelation DBTransaction.execDmlCommand(DmlCommand command)
          Sends a command to the server and returns the result obtained.
 AbstractRelation DBTransaction.execDmlCommand(ServerCommand serverCommand)
          Sends a command to the server and returns the result obtained.
 AbstractRelation DBTransaction.execDmlCommand(java.lang.String cmd)
          Sends a command to the server and returns the result obtained.
 AbstractRelation DBConnection.execDmlCommand(java.lang.String cmd)
          Deprecated. Use the execDmlCommand() method from the DBTransaction instead
 AbstractRelation DBTransaction.execDmlCommandAndEndTransaction(DmlCommand command)
          Sends a command to the server and returns the result obtained.
 AbstractRelation DBTransaction.execDmlCommandAndEndTransaction(ServerCommand serverCommand)
          Sends a command to the server and returns the result obtained.
 AbstractRelation DBTransaction.execDmlCommandAndEndTransaction(java.lang.String cmd)
          Sends a command to the server and returns the result obtained.
 AbstractRelation DBConnection.execDmlCommandAndEndTransaction(java.lang.String cmd)
          Deprecated. instead, use execDmlCommandAndEndTransaction() on the DBTransaction object obtained from startTransaction()
 AbstractRelation DBConnection.execMultipleStatement(java.util.Collection<?> commands)
          Deprecated. replace this method by the execMultipleStatementAndEndTransaction() of the DBTransaction object obtained from startTransaction()
 AbstractRelation DBTransaction.execMultipleStatement(java.util.Collection<? extends java.lang.Object> commands)
          Executes a series of single-assignment commands as a multiple-assignment command.
 AbstractRelation DBTransaction.execMultipleStatement(DmlAssignmentCommand[] commands)
          Executes a series of single-assignment commands as a multiple-assignment command.
 AbstractRelation DBTransaction.execMultipleStatement(java.lang.String[] commands)
          Executes a series of single-assignment commands as a multiple-assignment command.
 AbstractRelation DBConnection.execMultipleStatement(java.lang.String[] commands)
          Deprecated. replace this method by the execMultipleStatementAndEndTransaction() of the DBTransaction object obtained from startTransaction()
 AbstractRelation DBConnection.execMultipleStatementAndEndTransaction(java.util.Collection<?> commands)
          Deprecated. replace this method by the execMultipleStatementAndEndTransaction() of the DBTransaction object obtained from startTransaction()
 AbstractRelation DBTransaction.execMultipleStatementAndEndTransaction(java.util.Collection<? extends java.lang.Object> commands)
          Executes a series of single-assignment commands as a multiple-assignment command.
 AbstractRelation DBTransaction.execMultipleStatementAndEndTransaction(DmlAssignmentCommand[] commands)
          Executes a series of single-assignment commands as a multiple-assignment command.
 AbstractRelation DBTransaction.execMultipleStatementAndEndTransaction(java.lang.String[] commands)
          Executes a series of single-assignment commands as a multiple-assignment command.
 AbstractRelation DBConnection.execMultipleStatementAndEndTransaction(java.lang.String[] commands)
          Deprecated. replace this method by the execMultipleStatementAndEndTransaction() of the DBTransaction object obtained from startTransaction()
 AbstractRelation[] DBTransaction.execQueries(java.lang.String[] expression)
          Executes a series of inquire commands on the server.
 AbstractRelation[] DBConnection.execQueries(java.lang.String[] expression)
          Deprecated. replace this method by the execQueries() method of the DBTransaction object obtained from startTransaction()
 AbstractRelation[] DBTransaction.execQueriesAndEndTransaction(java.lang.String[] expression)
          Executes a series of inquire commands on the server.
 AbstractRelation[] DBConnection.execQueriesAndEndTransaction(java.lang.String[] expression)
          Deprecated. replace this method by the execQueriesAndEndTransaction() method of the DBTransaction object obtained from startTransaction()
 AbstractRelation DBTransaction.execQuery(java.lang.String expression)
          Executes an inquire command on the server.
 AbstractRelation DBConnection.execQuery(java.lang.String expression)
          Deprecated. replace this method by the execQuery() method of the DBTransaction object obtained from startTransaction()
 AbstractRelation DBTransaction.execQueryAndEndTransaction(java.lang.String expression)
          Executes an inquire command on the server.
 AbstractRelation DBConnection.execQueryAndEndTransaction(java.lang.String expression)
          Deprecated. replace this method by the execQueryAndEndTransaction() method of the DBTransaction object obtained from startTransaction()
 void DBTransaction.rollback()
          Commits this non-autocommit transaction.
 void DBConnection.rollback()
          Deprecated. Use the rollback() method of the DBTransaction object obtained from the connection instead
 DBTransaction DBTransaction.savePoint()
          Takes a savepoint in the current transaction.
 DBTransaction DBTransaction.startNestedTransaction(boolean newAutoCommit, boolean readOnly)
          Starts a nested transaction within this transaction.
 DBTransaction DBConnection.startTransaction()
          Starts an anonymous transaction on the connection with the default autocommit, transactionmode and ddl capture settings for transactions created on this connection
 DBTransaction DBConnection.startTransaction(boolean autoCommit)
          Starts an anonymous transaction on the connection with the given autocommit setting
 DBTransaction DBConnection.startTransaction(boolean autoCommit, DDLCapture ddlCapture)
          Starts an anonymous transaction on the connection with the given autocommit and ddl capture settings
 DBTransaction DBConnection.startTransaction(boolean autoCommit, TransactionMode transactionMode)
          Starts an anonymous transaction in the given transaction mode on the connection with the given autocommit setting
 DBTransaction DBConnection.startTransaction(boolean autoCommit, TransactionMode transactionMode, DDLCapture ddlCapture)
          Starts an anonymous transaction in the given transaction mode on the connection with the given autocommit setting
 DBTransaction DBConnection.startTransaction(DDLCapture ddlCapture)
          Starts an anonymous transaction on the connection with the default autocommit and transactionmode settings for transactions created on this connection, and the given ddl capture setting
 DBTransaction DBConnection.startTransaction(java.lang.String userID, boolean userAuthenticatedByClient, java.lang.String signatureAlgorithm, byte[] signature)
          Starts a transaction on the connection with the default autocommit setting for transactions created on this connection
 DBTransaction DBConnection.startTransaction(java.lang.String userID, boolean userAuthenticatedByClient, java.lang.String signatureAlgorithm, byte[] signature, boolean autoCommit, TransactionMode transactionMode)
          Starts a transaction on the connection with the given autoCommit setting
 DBTransaction DBConnection.startTransaction(java.lang.String userID, boolean userAuthenticatedByClient, java.lang.String signatureAlgorithm, byte[] signature, boolean autoCommit, TransactionMode transactionMode, DDLCapture captureDDL)
          Starts a transaction on the connection with the given autoCommit setting
 DBTransaction DBConnection.startTransaction(java.lang.String userID, boolean userAuthenticatedByClient, java.lang.String signatureAlgorithm, byte[] signature, DDLCapture ddlCapture)
          Starts a transaction on the connection with the default autocommit setting for transactions created on this connection
 DBTransaction DBConnection.startTransaction(java.lang.String userID, boolean userAuthenticatedByClient, java.lang.String signatureAlgorithm, byte[] signature, TransactionMode transactionMode)
          Starts a transaction on the connection with the default autocommit setting for transactions created on this connection
 DBTransaction DBConnection.startTransaction(java.lang.String userID, boolean userAuthenticatedByClient, java.lang.String signatureAlgorithm, byte[] signature, TransactionMode transactionMode, DDLCapture ddlCapture)
          Starts a transaction on the connection with the default autocommit setting for transactions created on this connection
 DBTransaction DBConnection.startTransaction(java.lang.String userID, Signer userIDSigner)
          Starts a transaction on the connection for the named user and with the default autocommit setting for transactions created on this connection.
 DBTransaction DBConnection.startTransaction(java.lang.String userID, Signer userIDSigner, boolean autoCommit)
          Starts a transaction on the connection for the named user and with the default autocommit setting for transactions created on this connection.
 DBTransaction DBConnection.startTransaction(java.lang.String userID, Signer userIDSigner, boolean autoCommit, TransactionMode transactionMode)
          Starts a transaction in the given transaction mode on the connection for the named user and with the default autocommit setting for transactions created on this connection.
 DBTransaction DBConnection.startTransaction(java.lang.String userID, Signer userIDSigner, TransactionMode transactionMode)
          Starts a transaction in the given read-only mode on the connection for the named user and with the default autocommit setting for transactions created on this connection.
 DBTransaction DBConnection.startTransaction(TransactionMode transactionMode)
          Starts an anonymous transaction in the given transaction mode on the connection with the default autocommit setting for transactions created on this connection
 DBTransaction DBConnection.startTransaction(TransactionMode transactionMode, DDLCapture ddlCapture)
          Starts an anonymous transaction in the given transaction mode on the connection with the default autocommit setting for transactions created on this connection