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

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

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

Record.selectFields介绍

[英]Select the fields for this query. Override this to select other than all the records.
[中]选择此查询的字段。覆盖此选项以选择除所有记录之外的其他记录。

代码示例

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

/**
 * Select the fields for this query.
 */
public void selectFields()
{
  // By default, all fields are selected
  super.selectFields();
  this.checkLinkedFields();   // Make sure linked fields are selected
}
/**

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

/**
 * Select the fields for this query.
 */
public void selectFields()
{
  // By default, all fields are selected
  super.selectFields();
  this.checkLinkedFields();   // Make sure linked fields are selected
}
/**

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

/**
 * Select the fields for this query.
 */
public void selectFields()
{
  // By default, all fields are selected
  super.selectFields();
  this.checkLinkedFields();   // Make sure linked fields are selected
}
/**

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

this.selectFields();      // This will do nothing, unless there is a specific selection method

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

this.selectFields();      // This will do nothing, unless there is a specific selection method

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

this.selectFields();      // This will do nothing, unless there is a specific selection method

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

this.selectFields();
if ((this.getDatabaseType() & DBConstants.BASE_TABLE_CLASS) != 0)

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

this.selectFields();
if ((this.getDatabaseType() & DBConstants.BASE_TABLE_CLASS) != 0)

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

this.selectFields();
if ((this.getDatabaseType() & DBConstants.BASE_TABLE_CLASS) != 0)

相关文章

微信公众号

最新文章

更多

Record类方法