Package | Description |
---|---|
be.SIRAPRISE.client.jsba |
This package contains all the classes and interfaces for the
Java
SIRA_PRISE
Bridging
Architecture, as well as classes that can be used to manipulate catalog objects using the JSBA.
|
Modifier and Type | Interface and Description |
---|---|
interface |
UpdatableDBObject
The UpdatableDBObject must be implemented by all classes whose objects are to be used as initiators of SIRA_PRISE update commands in the Jave/SIRA_PRISE bridge
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractDBObject
An abstract class that can be inherited from by classes that need to implement DBObject, providing default implementations for the Java/SIRA_PRISE bridge methods
|
class |
AbstractUpdatableDBObject
An abstract class that can be inherited from by classes that need to implement UpdatableDBObject, providing default implementations for the Java/SIRA_PRISE bridge methods
|
class |
AssignmentConstraint |
class |
AssignmentConstraintCheck |
class |
Attribute |
class |
AttributeValueDistribution |
class |
Client |
class |
ClientCertificate |
class |
ClusteredRecordSpace |
class |
ClusteredRecordSpaceLocAttrs |
class |
ConstrainedType |
class |
DatabaseConstraint |
class |
DatabaseConstraintCheck |
class |
DbmsFile |
class |
DBObjectTemplate
Class provided for purposes of documenting the methods involved in the SIRA_PRISE/Java bridge.
|
class |
ExpressionInfo
A read-only class to represent the results of an invocation of __EXPRESSIONINFO
|
class |
HashedRecordSpace |
class |
IndexAttribute |
class |
JavaBackedType |
class |
Key |
class |
KeyAttribute |
class |
NewAttributeDefaultValue |
class |
NonScalarAttributeAttribute |
class |
Operator |
class |
RecordAttribute |
class |
RecordType |
class |
Relvar |
class |
RelvarAttribute |
class |
RelvarCardinality |
class |
StorageSpace |
class |
TriggeredDataAction |
class |
TupleConstraint |
class |
TypeSpaceCalcHint |
class |
UpdatableDBObjectTemplate
Class provided for purposes of documenting the methods involved in the SIRA_PRISE/Java bridge.
|
class |
User |
class |
UserDefinedOrderingOperator |
class |
UserDefinedType |
class |
UserDefinedTypeNonPhysicalPossrep |
class |
UserDefinedTypePhysicalPossrepComponent |
class |
UserDefinedTypePossrepComponent |
class |
UserDefinedTypePPCValueSelector |
class |
VirtualRelvar |
Modifier and Type | Method and Description |
---|---|
static DmlAddCommand |
AbstractDBObject.dbAddCommand(java.lang.String relvarName,
DBObject o)
Gets the command for adding an entry in the named relvar (in the database the transaction is connected to), for the given object.
|
static DmlAssertCommand |
AbstractDBObject.dbAssertCommand(java.lang.String relvarName,
DBObject o)
Gets the Assert command for asserting an entry in the named relvar (in the database the transaction is connected to), for the given object.
|
static DmlDeleteCommand |
AbstractDBObject.dbDeleteCommand(java.lang.String relvarName,
DBObject o)
Gets the command for deleting the tuple in the named relvar (in the database the transaction is connected to), for the given object.
|
static DmlUnassertCommand |
AbstractDBObject.dbUnAssertCommand(java.lang.String relvarName,
DBObject o)
Gets the command for unasserting the tuple in the named relvar (in the database the transaction is connected to), for the given object.
|
DmlDeleteCommand |
DBObjectToDmlDeleteCommandTransformer.transform(DBObject from) |
DmlUnassertCommand |
DBObjectToDmlUnassertCommandTransformer.transform(DBObject from) |
DmlAssertCommand |
DBObjectToDmlAssertCommandTransformer.transform(DBObject from) |
Constructor and Description |
---|
DmlAddCommand(java.lang.String relvarName,
DBObject dbObject)
Creates the command object.
|
DmlAssertCommand(java.lang.String relvarName,
DBObject dbObject)
Creates the command object.
|
DmlDeleteCommand(java.lang.String relvarName,
DBObject dbObject)
Creates the command object.
|
DmlUnassertCommand(java.lang.String relvarName,
DBObject dbObject)
Creates the command object.
|