org.jbundle.base.db.Record.handleEndKey()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(4.7k)|赞(0)|评价(0)|浏览(62)

本文整理了Java中org.jbundle.base.db.Record.handleEndKey方法的一些代码示例,展示了Record.handleEndKey的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Record.handleEndKey方法的具体详情如下:
包路径:org.jbundle.base.db.Record
类名称:Record
方法名:handleEndKey

Record.handleEndKey介绍

[英]The end key position is in this record... Save it!
[中]结束键的位置在这个记录中。。。省省吧!

代码示例

代码示例来源:origin: org.jbundle.base/org.jbundle.base.mixed

this.handleEndKey();            // Set up the larger key
String strEndRange = this.addSelectParams("<=", DBConstants.END_SELECT_KEY, true, bIsQueryRecord, bUseCurrentValues, vParamList, true, false);   // Add only if changed
String strWhere = DBConstants.BLANK;

代码示例来源:origin: org.jbundle.base/org.jbundle.base

this.handleEndKey();            // Set up the larger key
String strEndRange = this.addSelectParams("<=", DBConstants.END_SELECT_KEY, true, bIsQueryRecord, bUseCurrentValues, vParamList, true, false);   // Add only if changed
String strWhere = DBConstants.BLANK;

代码示例来源:origin: org.jbundle.base.db/org.jbundle.base.db

this.handleEndKey();            // Set up the larger key
String strEndRange = this.addSelectParams("<=", DBConstants.END_SELECT_KEY, true, bIsQueryRecord, bUseCurrentValues, vParamList, true, false);   // Add only if changed
String strWhere = DBConstants.BLANK;

代码示例来源:origin: org.jbundle.base.db/org.jbundle.base.db

/**
   * Do the physical Open on this table (requery the table).
   * @exception DBException File exception.
   */
  public void open() throws DBException
  {
    if (this.isOpen())
      return;         // Ignore if already open
    this.getRecord().handleInitialKey();        // Set up the smaller key
    this.getRecord().handleEndKey();            // Set up the larger key
        // You can't process a QueryRecord using tables, use special table logic.
    ((QueryRecord)m_record).openTableQuery();
  }
}

代码示例来源:origin: org.jbundle.base/org.jbundle.base

/**
   * Do the physical Open on this table (requery the table).
   * @exception DBException File exception.
   */
  public void open() throws DBException
  {
    if (this.isOpen())
      return;         // Ignore if already open
    this.getRecord().handleInitialKey();        // Set up the smaller key
    this.getRecord().handleEndKey();            // Set up the larger key
        // You can't process a QueryRecord using tables, use special table logic.
    ((QueryRecord)m_record).openTableQuery();
  }
}

代码示例来源:origin: org.jbundle.base/org.jbundle.base.mixed

/**
   * Do the physical Open on this table (requery the table).
   * @exception DBException File exception.
   */
  public void open() throws DBException
  {
    if (this.isOpen())
      return;         // Ignore if already open
    this.getRecord().handleInitialKey();        // Set up the smaller key
    this.getRecord().handleEndKey();            // Set up the larger key
        // You can't process a QueryRecord using tables, use special table logic.
    ((QueryRecord)m_record).openTableQuery();
  }
}

代码示例来源:origin: org.jbundle.base/org.jbundle.base

/**
 * Requery the table.
 * <p>NOTE: You do not need to Open to do a seek or addNew.
 * The record pointer is positioned before the first record at BOF.
 * @exception DBException
 */
public void open() throws DBException
{
  if (this.isOpen())
    return;         // Ignore if already open
  m_bIsOpen = false;
  this.getRecord().handleInitialKey();        // Set up the smaller key
  this.getRecord().handleEndKey();            // Set up the larger key
  this.doOpen();      // Now do the physical open in sub class.
  m_bIsOpen = true;
  m_iRecordStatus = DBConstants.RECORD_INVALID | DBConstants.RECORD_AT_BOF;
  if ((this.getRecord().getOpenMode() & DBConstants.OPEN_SUPPRESS_MESSAGES) == 0)
    this.getRecord().handleRecordChange(DBConstants.AFTER_REQUERY_TYPE);    // Notify listeners that a new table will be built
}
/**

代码示例来源:origin: org.jbundle.base.db/org.jbundle.base.db

/**
 * Requery the table.
 * <p>NOTE: You do not need to Open to do a seek or addNew.
 * The record pointer is positioned before the first record at BOF.
 * @exception DBException
 */
public void open() throws DBException
{
  if (this.isOpen())
    return;         // Ignore if already open
  m_bIsOpen = false;
  this.getRecord().handleInitialKey();        // Set up the smaller key
  this.getRecord().handleEndKey();            // Set up the larger key
  this.doOpen();      // Now do the physical open in sub class.
  m_bIsOpen = true;
  m_iRecordStatus = DBConstants.RECORD_INVALID | DBConstants.RECORD_AT_BOF;
  if ((this.getRecord().getOpenMode() & DBConstants.OPEN_SUPPRESS_MESSAGES) == 0)
    this.getRecord().handleRecordChange(DBConstants.AFTER_REQUERY_TYPE);    // Notify listeners that a new table will be built
}
/**

代码示例来源:origin: org.jbundle.base/org.jbundle.base.mixed

/**
 * Requery the table.
 * <p>NOTE: You do not need to Open to do a seek or addNew.
 * The record pointer is positioned before the first record at BOF.
 * @exception DBException
 */
public void open() throws DBException
{
  if (this.isOpen())
    return;         // Ignore if already open
  m_bIsOpen = false;
  this.getRecord().handleInitialKey();        // Set up the smaller key
  this.getRecord().handleEndKey();            // Set up the larger key
  this.doOpen();      // Now do the physical open in sub class.
  m_bIsOpen = true;
  m_iRecordStatus = DBConstants.RECORD_INVALID | DBConstants.RECORD_AT_BOF;
  if ((this.getRecord().getOpenMode() & DBConstants.OPEN_SUPPRESS_MESSAGES) == 0)
    this.getRecord().handleRecordChange(DBConstants.AFTER_REQUERY_TYPE);    // Notify listeners that a new table will be built
}
/**

相关文章

微信公众号

最新文章

更多

Record类方法