1 24 25 package com.mckoi.database.interpret; 26 27 import com.mckoi.database.*; 28 29 38 39 public interface FromTableInterface { 40 41 45 String getUniqueName(); 46 47 53 boolean matchesReference(String catalog, String schema, String table); 54 55 70 int resolveColumnCount(String catalog, String schema, 71 String table, String column); 72 73 79 Variable resolveColumn(String catalog, String schema, 80 String table, String column); 81 82 87 Variable[] allColumns(); 88 89 98 } 99 | Popular Tags |