Package org.apache.derby.io

Examples of org.apache.derby.io.StorageRandomAccessFile.sync()


                page.unlatch();
                page = null;
            }

            // sync the new version of the container.
            newRaf.sync(true);
            newRaf.close();
            newRaf = null;
           
        }catch (IOException ioe) {
            throw StandardException.newException(
View Full Code Here


        verifyKeyFile = privAccessFile(sf,Attribute.CRYPTO_EXTERNAL_KEY_VERIFY_FILE,"rw");
        // write the checksum length as int, and then the checksum and then the encrypted data
        verifyKeyFile.writeInt(checksum.length);
        verifyKeyFile.write(checksum);
        verifyKeyFile.write(data);
        verifyKeyFile.sync(true);
      }
      else
      {
        // Read from verifyKey.dat as an InputStream. This allows for
                // reading the information from verifyKey.dat successfully even when using the jar
View Full Code Here

        verifyKeyFile = privAccessFile(sf,Attribute.CRYPTO_EXTERNAL_KEY_VERIFY_FILE,"rw");
        // write the checksum length as int, and then the checksum and then the encrypted data
        verifyKeyFile.writeInt(checksum.length);
        verifyKeyFile.write(checksum);
        verifyKeyFile.write(data);
        verifyKeyFile.sync(true);
      }
      else
      {
        // Read from verifyKey.dat as an InputStream. This allows for
                // reading the information from verifyKey.dat successfully even when using the jar
View Full Code Here

        log.seek(filepos);
        log.writeInt(r.nextInt());
        filepos +=512;

      }
      log.sync(false);
      log.close();
    }catch(IOException ie)
    {
      throw T_Fail.exceptionFail(ie);
    }
View Full Code Here

                page.unlatch();
                page = null;
            }

            // sync the new version of the container.
            newRaf.sync(true);
            newRaf.close();
            newRaf = null;
           
        }catch (IOException ioe) {
            throw StandardException.newException(
View Full Code Here

                page.unlatch();
                page = null;
            }

            // sync the new version of the container.
            newRaf.sync();
            newRaf.close();
            newRaf = null;
           
        }catch (IOException ioe) {
            throw StandardException.newException(
View Full Code Here

                page.unlatch();
                page = null;
            }

            // sync the new version of the container.
            newRaf.sync(true);
            newRaf.close();
            newRaf = null;
           
        }catch (IOException ioe) {
            throw StandardException.newException(
View Full Code Here

                page.unlatch();
                page = null;
            }

            // sync the new version of the container.
            newRaf.sync(true);
            newRaf.close();
            newRaf = null;
           
        }catch (IOException ioe) {
            throw StandardException.newException(
View Full Code Here

        log.seek(filepos);
        log.writeInt(r.nextInt());
        filepos +=512;

      }
            log.sync();
      log.close();
    }catch(IOException ie)
    {
      throw T_Fail.exceptionFail(ie);
    }
View Full Code Here

        verifyKeyFile = privAccessFile(sf,Attribute.CRYPTO_EXTERNAL_KEY_VERIFY_FILE,"rw");
        // write the checksum length as int, and then the checksum and then the encrypted data
        verifyKeyFile.writeInt(checksum.length);
        verifyKeyFile.write(checksum);
        verifyKeyFile.write(data);
                verifyKeyFile.sync();
      }
      else
      {
        // Read from verifyKey.dat as an InputStream. This allows for
                // reading the information from verifyKey.dat successfully even when using the jar
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.