Package org.apache.blur.jdbc.util

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


  // java 7

  public ResultSet getPseudoColumns(String catalog, String schemaPattern, String tableNamePattern,
      String columnNamePattern) throws SQLException {
    throw new NotImplemented("getPseudoColumns");
  }
View Full Code Here


      String columnNamePattern) throws SQLException {
    throw new NotImplemented("getPseudoColumns");
  }

  public boolean generatedKeyAlwaysReturned() throws SQLException {
    throw new NotImplemented("generatedKeyAlwaysReturned");
  }
View Full Code Here

  public AbstractBlurResultSetMetaData() {
    throwExceptionDelegate = (ResultSetMetaData) Proxy.newProxyInstance(ResultSetMetaData.class.getClassLoader(),
        new Class[] { ResultSetMetaData.class }, new InvocationHandler() {
          @Override
          public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
            throw new NotImplemented(method.getName());
          }
        });
  }
View Full Code Here

TOP

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

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.