org.jbundle.thin.base.db.FieldList.setTable()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(116)

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

FieldList.setTable介绍

[英]Set the table for this record.
[中]设置此记录的表格。

代码示例

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

/**
 * I'm done with the model, free the resources.
 * Note: This does not free the associated record. it just nulls the reference.
 * (although freeing the record will free this table).
 */
public void free()
{
  if (m_record != null) // First, release the record for this table
  { // Do not free this.getFieldList() (may be current record)
    m_record.setTable(null);    // Don't try to free me
    m_record.free();
    m_record = null;
  }
}
/**

代码示例来源:origin: com.tourgeek.thin.app/com.tourgeek.thin.app.booking

if (fieldListNew != null)
  fieldListNew.setTable(fieldList.getTable());  // This fakes JScreen into not linking to the remote DB
  fieldListNew.setEditMode(Constants.EDIT_ADD);
if (fieldListNew != null)
  fieldListNew.setTable(null);  // This fakes JScreen into not linking to the remote DB
  fieldListNew.setEditMode(Constants.EDIT_NONE);

代码示例来源:origin: com.tourgeek.thin.app/com.tourgeek.thin.app.booking

recordIn.setTable(null);
  record.setTable(table);
  table.setRecord(record);
} catch (RemoteException ex)    {

代码示例来源:origin: com.tourgeek.thin.app/com.tourgeek.thin.app.booking

objKey = recordIn.getField(0).getData();
table = recordIn.getTable();
recordIn.setTable(null);
  record.setTable(table);
  table.setRecord(record);
  if (objKey != null)

相关文章