Package org.firebirdsql.squirrel.util

Examples of org.firebirdsql.squirrel.util.IndexInfo


      pstmt = conn.prepareStatement(SQL);
      pstmt.setString(1, doi.getSimpleName());
      rs = pstmt.executeQuery();
      if (rs.next())
      {
        return new IndexInfo(
           rs.getString(1), rs.getString(2), rs.getInt(3), rs.getString(4), rs.getInt(5), rs.getInt(6),
           rs.getInt(7), rs.getInt(8), rs.getString(9), rs.getString(10));
      }
      String msg = s_stringMgr.getString("IndexInfoTab.err.noindex", doi.getSimpleName());
      throw new DataSetException(msg);
View Full Code Here

TOP

Related Classes of org.firebirdsql.squirrel.util.IndexInfo

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.