Class JdbcTable

All Implemented Interfaces:
ModifiableTable, QueryableTable, ScannableTable, Table, TranslatableTable, Wrapper

public class JdbcTable extends AbstractQueryableTable implements TranslatableTable, ScannableTable, ModifiableTable
Queryable that gets its data from a table within a JDBC connection.

The idea is not to read the whole table, however. The idea is to use this as a building block for a query, by applying Queryable operators such as ExtendedEnumerable.where(org.apache.calcite.linq4j.function.Predicate2). The resulting queryable can then be converted to a SQL query, which can be executed efficiently on the JDBC server.