public class BatchMetadataCollector extends Object
CREATE TABLE t(id int, name varchar(10)); SELECT t.id, t.name FROM t;The collector will extract table "t" with columns "id" and "name" from the CREATE TABLE statement, making them available for resolution in the SELECT.
| Constructor and Description |
|---|
BatchMetadataCollector(TStatementList statements,
EDbVendor vendor)
Create a batch metadata collector.
|
| Modifier and Type | Method and Description |
|---|---|
TSQLEnv |
collect()
Collect metadata from DDL statements and create a TSQLEnv.
|
public BatchMetadataCollector(TStatementList statements, EDbVendor vendor)
statements - The list of SQL statements to processvendor - The database vendor