Package org.apache.derby.iapi.services.io

Examples of org.apache.derby.iapi.services.io.FormatableHashtable


   */
  public void readExternal( ObjectInput in )
     throws IOException, ClassNotFoundException
  {

    FormatableHashtable fh = (FormatableHashtable)in.readObject();
    uuid = (UUID)fh.get("uuid");
    dFinder = (DependableFinder)fh.get("dFinder");
    providerName = (String) fh.get("providerName");
  }
View Full Code Here


   * @exception IOException    thrown on error
   */
  public void writeExternal( ObjectOutput out )
     throws IOException
  {
    FormatableHashtable fh = new FormatableHashtable();
    fh.put("uuid", uuid);
    fh.put("dFinder", dFinder);
    fh.put("providerName", providerName);
    out.writeObject(fh);
  }
View Full Code Here

    if (key == null)
      return;

    if (compileTimeConstants == null)
      compileTimeConstants = new FormatableHashtable();

    compileTimeConstants.put(key, value);
  }
View Full Code Here

   *
   * @exception IOException  Thrown on read error
   */
  public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
  {
    FormatableHashtable fh = (FormatableHashtable)in.readObject();
    isUnique = fh.getBoolean("isUnique");
    int bcpLength = fh.getInt("keyLength");
    baseColumnPositions = new int[bcpLength];
    isAscending = new boolean[bcpLength];
    for (int i = 0; i < bcpLength; i++)
    {
      baseColumnPositions[i] = fh.getInt("bcp" + i);
      isAscending[i] = fh.getBoolean("isAsc" + i);
    }
    numberOfOrderedColumns = fh.getInt("orderedColumns");
    indexType = (String)fh.get("indexType");
    //isUniqueWithDuplicateNulls attribute won't be present if the index
    //was created in older versions 
    if (fh.containsKey("isUniqueWithDuplicateNulls"))
      isUniqueWithDuplicateNulls = fh.getBoolean(
                                    "isUniqueWithDuplicateNulls");
    else
      isUniqueWithDuplicateNulls = false;
  }
View Full Code Here

   *
   * @exception IOException  Thrown on write error
   */
  public void writeExternal(ObjectOutput out) throws IOException
  {
    FormatableHashtable fh = new FormatableHashtable();
    fh.putBoolean("isUnique", isUnique);
    fh.putInt("keyLength", baseColumnPositions.length);
    for (int i = 0; i < baseColumnPositions.length; i++)
    {
      fh.putInt("bcp" + i, baseColumnPositions[i]);
      fh.putBoolean("isAsc" + i, isAscending[i]);
    }
    fh.putInt("orderedColumns", numberOfOrderedColumns);
    fh.put("indexType", indexType);
    //write the new attribut older versions will simply ignore it
    fh.putBoolean("isUniqueWithDuplicateNulls",
                                        isUniqueWithDuplicateNulls);
        out.writeObject(fh);
  }
View Full Code Here

      synchronized (savedObjects) {

        compileTimeConstants = (FormatableHashtable) savedObjects[ctcNumber];
        if (compileTimeConstants == null) {
          compileTimeConstants = new FormatableHashtable();
          savedObjects[ctcNumber] = compileTimeConstants;
        }
      }
    }
View Full Code Here

     throws StandardException
  {
    if (saveServiceProperty(key,value)) return;

    Dictionary defaults = (Dictionary)readProperty(tc,AccessFactoryGlobals.DEFAULT_PROPERTY_NAME);
    if (defaults == null) defaults = new FormatableHashtable();
    if (value==null)
      defaults.remove(key);
    else
      defaults.put(key,value);
    if (defaults.size() == 0) defaults = null;
View Full Code Here

   *
    * @exception IOException thrown on error
   */
  public void writeExternal(ObjectOutput out) throws IOException
  {
    FormatableHashtable fh = new FormatableHashtable();
    fh.put("name", name);
    fh.put("tableName", tableName);
    fh.put("schemaName", schemaName);
    fh.putInt("columnPos", columnPos);
    fh.put("type", type);
    fh.putBoolean("isAutoincrement", isAutoincrement);
    fh.putBoolean("updatableByCursor", updatableByCursor);
    out.writeObject(fh);
    return;
 
View Full Code Here

   * @exception ClassNotFoundException    thrown on error
   */
  public void readExternal(ObjectInput in)
    throws IOException, ClassNotFoundException
  {
    FormatableHashtable fh = (FormatableHashtable)in.readObject();   
    name = (String)fh.get("name");
    tableName = (String)fh.get("tableName");
    schemaName = (String)fh.get("schemaName");
    columnPos = fh.getInt("columnPos");
    type = getStoredDataTypeDescriptor(fh.get("type"));
    isAutoincrement = fh.getBoolean("isAutoincrement");
    updatableByCursor = fh.getBoolean("updatableByCursor");
  }
View Full Code Here

     throws IOException, ClassNotFoundException
  {

    FormatableLongHolder flh;

    FormatableHashtable fh = (FormatableHashtable)in.readObject();
    name = (String)fh.get("name");
    dataType = (DataTypeDescriptor) fh.get("dataType");
    defaultValue = (DataValueDescriptor)fh.get("defaultValue");
    defaultInfo = (DefaultInfo)fh.get("defaultInfo");
    newDefaultUUID = (UUID)fh.get("newDefaultUUID");
    oldDefaultUUID = (UUID)fh.get("oldDefaultUUID");
    action = fh.getInt("action");
   
    if (fh.get("autoincStart") != null)
    {
      autoincStart = fh.getLong("autoincStart");
      autoincInc = fh.getLong("autoincInc");
    }
    else
    {
      autoincInc = autoincStart = 0;
    }

        FormatableArrayHolder   fah = (FormatableArrayHolder) fh.get( "providers" );
        if ( fah != null )
        {
            providers = (ProviderInfo[]) fah.getArray( ProviderInfo.class );
        }
  }
View Full Code Here

TOP

Related Classes of org.apache.derby.iapi.services.io.FormatableHashtable

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.