Package ch.inftec.ju.db.JuConnUtil.MetaDataInfo

Examples of ch.inftec.ju.db.JuConnUtil.MetaDataInfo.SchemaInfos


  /**
   * Check if we can get the schema names for MySQL.
   */
  @Test
  public void metaDataInfo_canGet_schemaNames() {
    SchemaInfos schemaInfos = this.connUtil.getMetaDataInfo().getSchemaInfos();
    Assert.assertNotNull(schemaInfos);

    String schemaName = this.connUtil.getMetaDataInfo().getSchemaInfo().getName();

    Assert.assertTrue(this.connUtil.getMetaDataInfo().getSchemaInfos().getSchemaNames().contains(schemaName));
View Full Code Here


  /**
   * Check if we can get the schema names for Oracle.
   */
  @Test
  public void metaDataInfo_canGet_schemaNames() {
    SchemaInfos schemaInfos = this.connUtil.getMetaDataInfo().getSchemaInfos();
    Assert.assertNotNull(schemaInfos);

    String schemaName = this.connUtil.getMetaDataInfo().getUserName();

    Assert.assertTrue(this.connUtil.getMetaDataInfo().getSchemaInfos().getSchemaNames().contains(schemaName));
View Full Code Here

TOP

Related Classes of ch.inftec.ju.db.JuConnUtil.MetaDataInfo.SchemaInfos

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.