Package org.apache.blur.jdbc.util

Examples of org.apache.blur.jdbc.util.EmptyResultSet


    return new TableDescriptorResultSet(data);
  }

  @Override
  public ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) throws SQLException {
    return new EmptyResultSet();
  }
View Full Code Here


    }
  }

  @Override
  public ResultSet getSuperTables(String catalog, String schemaPattern, String tableNamePattern) throws SQLException {
    return new EmptyResultSet();
  }
View Full Code Here

    return new EmptyResultSet();
  }

  @Override
  public ResultSet getProcedures(String catalog, String schemaPattern, String procedureNamePattern) throws SQLException {
    return new EmptyResultSet();
  }
View Full Code Here

  public int getDefaultTransactionIsolation() throws SQLException {
    return Connection.TRANSACTION_NONE;
  }

  public ResultSet getTableTypes() throws SQLException {
    return new EmptyResultSet();
  }
View Full Code Here

    return "0.1";
  }

  @Override
  public ResultSet getCatalogs() throws SQLException {
    return new EmptyResultSet();
  }
View Full Code Here

    return new EmptyResultSet();
  }

  @Override
  public ResultSet getClientInfoProperties() throws SQLException {
    return new EmptyResultSet();
  }
View Full Code Here

    return "procedure";
  }

  @Override
  public ResultSet getSchemas(String catalog, String schemaPattern) throws SQLException {
    return new EmptyResultSet();
  }
View Full Code Here

    return "\\";
  }

  @Override
  public ResultSet getTypeInfo() throws SQLException {
    return new EmptyResultSet();
  }
View Full Code Here

    return username;
  }

  @Override
  public ResultSet getUDTs(String catalog, String schemaPattern, String typeNamePattern, int[] types) throws SQLException {
    return new EmptyResultSet();
  }
View Full Code Here

TOP

Related Classes of org.apache.blur.jdbc.util.EmptyResultSet

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.