Package net.hydromatic.optiq.impl.java

Examples of net.hydromatic.optiq.impl.java.MapSchema


    return stereotype;
    }

  public void addSchemasTo( LingualConnection connection ) throws SQLException
    {
    MapSchema rootSchema = (MapSchema) connection.getRootSchema();

    addSchemas( connection, rootSchema, schemaCatalog.getRootSchemaDef() );
    }
View Full Code Here


    return childTapSchema;
    }

  public void addTapToConnection( LingualConnection connection, String schemaName, Tap tap, String tableAlias )
    {
    MapSchema rootSchema = (MapSchema) connection.getRootSchema();
    TapSchema subSchema = (TapSchema) rootSchema.getSubSchema( schemaName );
    SchemaDef schemaDef = schemaCatalog.getSchemaDef( schemaName );

    if( tableAlias != null && schemaDef.getTable( tableAlias ) != null )
      {
      TapTable table = (TapTable) subSchema.getTable( tableAlias, Object.class );
View Full Code Here

TOP

Related Classes of net.hydromatic.optiq.impl.java.MapSchema

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.