org.teiid.metadata.Table.setParent()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(90)

本文整理了Java中org.teiid.metadata.Table.setParent()方法的一些代码示例,展示了Table.setParent()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.setParent()方法的具体详情如下:
包路径:org.teiid.metadata.Table
类名称:Table
方法名:setParent

Table.setParent介绍

暂无

代码示例

代码示例来源:origin: teiid/teiid

public void addTable(Table table) {
  table.setParent(this);
  if (this.tables.put(table.getName(), table) != null) {
    throw new DuplicateRecordException(DataPlugin.Event.TEIID60013, DataPlugin.Util.gs(DataPlugin.Event.TEIID60013, table.getName())); 
  }
  resolvingOrder.add(table);
}

代码示例来源:origin: teiid/teiid

Schema s = new Schema();
  s.setName(parentName);
  ((Table)record).setParent(s);
} else if (record instanceof Procedure) {
  Schema s = new Schema();

代码示例来源:origin: org.teiid/teiid-metadata

Schema s = new Schema();
  s.setName(parentName);
  ((Table)record).setParent(s);
} else if (record instanceof Procedure) {
  Schema s = new Schema();

代码示例来源:origin: teiid/teiid

t1.setParent(s);
s.setProperty(DataModifiable.DATA_TTL, "0");
ai.addAccessedObject(t1);

代码示例来源:origin: org.jboss.teiid/teiid-engine

throw new QueryResolverException(QueryPlugin.Event.TEIID31135, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31135, create.getOn()));
create.getTableMetadata().setParent((Schema)mid);
tempTable.getTableData().setModel(mid);

代码示例来源:origin: teiid/teiid

throw new QueryResolverException(QueryPlugin.Event.TEIID31135, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31135, create.getOn()));
create.getTableMetadata().setParent((Schema)mid);
tempTable.getTableData().setModel(mid);

代码示例来源:origin: org.teiid/teiid-engine

throw new QueryResolverException(QueryPlugin.Event.TEIID31135, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31135, create.getOn()));
create.getTableMetadata().setParent((Schema)mid);
tempTable.getTableData().setModel(mid);

相关文章

微信公众号

最新文章

更多