1 21 22 package org.apache.derby.iapi.sql.dictionary; 23 24 import org.apache.derby.iapi.services.io.Formatable; 25 26 import org.apache.derby.iapi.error.StandardException; 27 28 35 36 public interface ConsInfo extends Formatable 37 { 38 47 public SchemaDescriptor getReferencedTableSchemaDescriptor(DataDictionary dd) 48 throws StandardException; 49 50 59 public TableDescriptor getReferencedTableDescriptor(DataDictionary dd) 60 throws StandardException; 61 62 68 public String [] getReferencedColumnNames(); 69 70 75 public String getReferencedTableName(); 76 77 78 83 84 public int getReferentialActionUpdateRule(); 85 86 91 public int getReferentialActionDeleteRule(); 92 93 } 94 95 96 97 | Popular Tags |