Package com.jacob.com

Examples of com.jacob.com.Variant


  public int getIsolationLevel() {
    return Dispatch.get(this, "IsolationLevel").getInt();
  }

  public void setIsolationLevel(int Level) {
    Dispatch.put(this, "IsolationLevel", new Variant(Level));
  }
View Full Code Here


  public int getAttributes() {
    return Dispatch.get(this, "Attributes").getInt();
  }

  public void setAttributes(int plAttr) {
    Dispatch.put(this, "Attributes", new Variant(plAttr));
  }
View Full Code Here

  public int getCursorLocation() {
    return Dispatch.get(this, "CursorLocation").getInt();
  }

  public void setCursorLocation(int plCursorLoc) {
    Dispatch.put(this, "CursorLocation", new Variant(plCursorLoc));
  }
View Full Code Here

  public int getMode() {
    return Dispatch.get(this, "Mode").getInt();
  }

  public void setMode(int plMode) {
    Dispatch.put(this, "Mode", new Variant(plMode));
  }
View Full Code Here

  public int getState() {
    return Dispatch.get(this, "State").getInt();
  }

  public Variant OpenSchema(int Schema, Variant Restrictions, Variant SchemaID) {
    return Dispatch.call(this, "OpenSchema", new Variant(Schema),
        Restrictions, SchemaID);
  }
View Full Code Here

  public void AppendChunk(Variant Data) {
    Dispatch.call(this, "AppendChunk", Data);
  }

  public Variant GetChunk(int Length) {
    return Dispatch.call(this, "GetChunk", new Variant(Length));
  }
View Full Code Here

  public void setDataFormat(Variant ppiDF) {
    Dispatch.put(this, "DataFormat", ppiDF);
  }

  public void setPrecision(byte pb) {
    Dispatch.put(this, "Precision", new Variant(pb));
  }
View Full Code Here

  public void setPrecision(byte pb) {
    Dispatch.put(this, "Precision", new Variant(pb));
  }

  public void setNumericScale(byte pb) {
    Dispatch.put(this, "NumericScale", new Variant(pb));
  }
View Full Code Here

  public void setNumericScale(byte pb) {
    Dispatch.put(this, "NumericScale", new Variant(pb));
  }

  public void setType(int pDataType) {
    Dispatch.put(this, "Type", new Variant(pDataType));
  }
View Full Code Here

  public void setType(int pDataType) {
    Dispatch.put(this, "Type", new Variant(pDataType));
  }

  public void setDefinedSize(int pl) {
    Dispatch.put(this, "DefinedSize", new Variant(pl));
  }
View Full Code Here

TOP

Related Classes of com.jacob.com.Variant

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.