Package org.hsqldb.lib

Examples of org.hsqldb.lib.SimpleLog.sendLine()


      localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close(" + paramBoolean + ") : start");
      if (paramBoolean)
      {
        this.cache.saveAll();
        Trace.printSystemOut("saveAll: " + localStopWatch.elapsedTime());
        localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close() : save data");
        if ((this.fileModified) || (this.freeBlocks.isModified()))
        {
          this.dataFile.seek(4L);
          this.dataFile.writeLong(this.freeBlocks.getLostBlocksSize());
          this.dataFile.seek(12L);
View Full Code Here


          this.dataFile.seek(28L);
          i = BitMap.set(0, 2);
          if (this.hasRowInfo)
            i = BitMap.set(i, 3);
          this.dataFile.writeInt(i);
          localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close() : flags");
          if (this.dataFile.length() != this.fileFreePosition)
            this.dataFile.seek(this.fileFreePosition);
          localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close() : seek end");
          Trace.printSystemOut("pos and flags: " + localStopWatch.elapsedTime());
        }
View Full Code Here

            i = BitMap.set(i, 3);
          this.dataFile.writeInt(i);
          localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close() : flags");
          if (this.dataFile.length() != this.fileFreePosition)
            this.dataFile.seek(this.fileFreePosition);
          localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close() : seek end");
          Trace.printSystemOut("pos and flags: " + localStopWatch.elapsedTime());
        }
      }
      if (this.dataFile != null)
      {
View Full Code Here

        }
      }
      if (this.dataFile != null)
      {
        this.dataFile.close();
        localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close() : close");
        this.dataFile = null;
        Trace.printSystemOut("close: " + localStopWatch.elapsedTime());
      }
      int i = this.fileFreePosition == 32L ? 1 : 0;
      if (i != 0)
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.