KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > datadictionarysystem > _DDSConstraintOperations


1 package com.daffodilwoods.daffodildb.server.datadictionarysystem;
2
3 import com.daffodilwoods.database.resource.DException;
4 import com.daffodilwoods.database.general.*;
5 public interface _DDSConstraintOperations {
6     public _CheckConstraintCharacteristics getCheckConstraintCharacteristics( QualifiedIdentifier tableName, boolean deferable ) throws InitializeException,DException;
7     public _PrimaryAndUniqueConstraintCharacteristics getPrimaryAndUniqueConstraintCharacteristics( QualifiedIdentifier tableName , boolean deferable) throws InitializeException,DException;
8     public _ReferencingConstraintCharacteristics getReferencingConstraintCharacteristics( QualifiedIdentifier tableName, boolean deferable ) throws InitializeException,DException;
9     public _ReferencedConstraintCharacteristics getReferencedConstraintCharacteristics( QualifiedIdentifier tableName, boolean deferable ) throws InitializeException,DException;
10     public boolean hasDefferedConstraints(QualifiedIdentifier tableName) throws DException;
11 }
12
Popular Tags