Package | Description |
---|---|
gudusoft.gsqlparser.nodes |
Provides the classes represents various SQL query parse tree node.
|
gudusoft.gsqlparser.sqlenv |
Modifier and Type | Method and Description |
---|---|
protected TSQLSchema |
TObjectName.searchImplicitSchema() |
Modifier and Type | Method and Description |
---|---|
TSQLSchema |
TSQLCatalog.createSchema(String schemaName)
create a schema under this catalog
|
TSQLSchema |
TSQLEnv.createSQLSchema(String qualifiedSchemaName)
create a new schema and add to the catalog
|
TSQLSchema |
TSQLSchemaObject.getSchema() |
TSQLSchema |
TSQLCatalog.getSchema(String schemaName,
boolean createIfNotExist)
get a schema instance from the catalog, create a new schema if this schema is not exist and the createIfNotExist parameter is true.
|
TSQLSchema |
TSQLEnv.getSQLSchema(String qualifiedSchemaName,
boolean createIfNotExist)
get a schema from the specified catalog, if not exists, create a new schema in the catalog.
|
protected TSQLSchema |
TSQLCatalog.searchSchema(String schemaName) |
Modifier and Type | Method and Description |
---|---|
List<TSQLSchema> |
TSQLCatalog.getSchemaList()
schema list in this catalog
|
Modifier and Type | Method and Description |
---|---|
protected void |
TSQLCatalog.addSchema(TSQLSchema sqlSchema) |
Constructor and Description |
---|
TSQLFunction(TSQLSchema sqlSchema,
String functionName) |
TSQLOraclePackage(TSQLSchema sqlSchema,
String packageName) |
TSQLProcedure(TSQLSchema sqlSchema,
String procedureName) |
TSQLProcedure(TSQLSchema sqlSchema,
String procedureName,
ESQLDataObjectType dataObjectType) |
TSQLRoutine(TSQLSchema schema,
String objectName,
ESQLDataObjectType dataObjectType) |
TSQLSchemaObject(TSQLSchema schema,
String objectName,
ESQLDataObjectType dataObjectType) |
TSQLSchemaObject(TSQLSchema schema,
String objectName,
ESQLDataObjectType dataObjectType,
int priority) |
TSQLSynonyms(TSQLSchema sqlSchema,
String synonymsName) |
TSQLTable(TSQLSchema sqlSchema,
String tableName)
create a new table belong to a schema
|
TSQLTrigger(TSQLSchema sqlSchema,
String triggerName) |