Examples of NDX


Examples of org.xBaseJ.micro.indexes.NDX

          jNDX = NDXes;
              return jNDX;
        }
        }
    if (readonly)
      jNDX = new NDX(filename, this, 'r');
    else
      jNDX = new NDX(filename, this, ' ');
    jNDXes.addElement(jNDX);
    return jNDX;
  }
View Full Code Here

Examples of org.xBaseJ.micro.indexes.NDX

   *                                    Java error caused by called methods
   */
  public Index createIndex(String filename, String index, boolean destroy, boolean unique)
    throws xBaseJException, IOException
  {
    jNDX = new NDX(filename, index, this, destroy, unique);
    jNDXes.addElement(jNDX);
    return jNDX;
  }
View Full Code Here

Examples of org.xBaseJ.micro.indexes.NDX

      if (dbtobj != null)
      dbtobj.close();

    Index NDXes;
    NDX n;

    for (i=1; i <= jNDXes.size(); i++)
      {
        NDXes = (Index) jNDXes.elementAt(i-1);
        if (NDXes instanceof NDX)
      {
        n = (NDX) NDXes;
        n.close();
      }
      }

    if (MDXfile != null)
      MDXfile.close();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.