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

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

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

Record.getRecordlistAt介绍

[英]Return the record at this location (for QueryRecords).
[中]返回此位置的记录(对于QueryRecords)。

代码示例

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

/**
 * Get this key area.
 * @param iKeySeq The key area to set.
 * @return The key area.
 */
public KeyArea getKeyArea(int iKeySeq)
{
  KeyArea keyArea = (KeyArea)super.getKeyArea(iKeySeq);
  if (keyArea == null)
    if (this != this.getRecordlistAt(0))
      return this.getRecordlistAt(0).getKeyArea(iKeySeq);
  return keyArea;
}
/**

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

/**
 * Get this key area.
 * @param iKeySeq The key area to set.
 * @return The key area.
 */
public KeyArea getKeyArea(int iKeySeq)
{
  KeyArea keyArea = (KeyArea)super.getKeyArea(iKeySeq);
  if (keyArea == null)
    if (this != this.getRecordlistAt(0))
      return this.getRecordlistAt(0).getKeyArea(iKeySeq);
  return keyArea;
}
/**

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

/**
 * Get this key area.
 * @param iKeySeq The key area to set.
 * @return The key area.
 */
public KeyArea getKeyArea(int iKeySeq)
{
  KeyArea keyArea = (KeyArea)super.getKeyArea(iKeySeq);
  if (keyArea == null)
    if (this != this.getRecordlistAt(0))
      return this.getRecordlistAt(0).getKeyArea(iKeySeq);
  return keyArea;
}
/**

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

Record record = this.getRecord().getRecordlistAt(i);
try {	// TODO - I Should load into a temp table (see below)
if (!record.getTable().create())

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

Record record = this.getRecord().getRecordlistAt(i);
try {	// TODO - I Should load into a temp table (see below)
if (!record.getTable().create())

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

Record record = this.getRecord().getRecordlistAt(i);
try {	// TODO - I Should load into a temp table (see below)
if (!record.getTable().create())

相关文章

微信公众号

最新文章

更多

Record类方法