Package org.xBaseJ.micro.fields

Examples of org.xBaseJ.micro.fields.MemoField


           break;
         case 'L':
           tField = new LogicalField(name, file);
           break;
         case 'M':
           tField = new MemoField(name, file, dbtobj);
           break;
         case 'N':
           tField = new NumField(name, iLength, decpoint, file);
           break;
         case 'P':
View Full Code Here


    if (tempDBF.dbtobj != null) {
      //   tempDBF.dbtobj.file.close();
      tempDBF.dbtobj.rename(dosname);
      dbtobj = tempDBF.dbtobj;
      Field tField;
      MemoField mField;
      for (i=1; i<=fldcount;i++) {
        tField = getField(i);
        if (tField instanceof MemoField) {
          mField = (MemoField) tField;
          mField.setDBTObj(dbtobj);
        }
      }
    }

View Full Code Here

TOP

Related Classes of org.xBaseJ.micro.fields.MemoField

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.