org.mybatis.generator.config.TableConfiguration.isUpdateByPrimaryKeyStatementEnabled()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(7.8k)|赞(0)|评价(0)|浏览(79)

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

TableConfiguration.isUpdateByPrimaryKeyStatementEnabled介绍

暂无

代码示例

代码示例来源:origin: cxjava/mybatis-generator-core

/**
 * Implements the rule for generating the update by primary key without
 * BLOBs SQL Map element and DAO method. If the table has a primary key as
 * well as other non-BLOB fields, and the updateByPrimaryKey statement is
 * allowed, then generate the element and method.
 * 
 * @return true if the element and method should be generated
 */
public boolean generateUpdateByPrimaryKeyWithoutBLOBs() {
  boolean rc = tableConfiguration.isUpdateByPrimaryKeyStatementEnabled()
      && introspectedTable.hasPrimaryKeyColumns() && introspectedTable.hasBaseColumns();
  return rc;
}

代码示例来源:origin: cxjava/mybatis-generator-core

/**
 * Implements the rule for generating the update by primary key with BLOBs
 * SQL Map element and DAO method. If the table has a primary key as well as
 * other BLOB fields, and the updateByPrimaryKey statement is allowed, then
 * generate the element and method.
 * 
 * @return true if the element and method should be generated
 */
public boolean generateUpdateByPrimaryKeyWithBLOBs() {
  boolean rc = tableConfiguration.isUpdateByPrimaryKeyStatementEnabled()
      && introspectedTable.hasPrimaryKeyColumns() && introspectedTable.hasBLOBColumns();
  return rc;
}

代码示例来源:origin: roncoo/roncoo-mybatis-generator

/**
 * Implements the rule for generating the update by primary key without
 * BLOBs SQL Map element and DAO method. If the table has a primary key as
 * well as other non-BLOB fields, and the updateByPrimaryKey statement is
 * allowed, then generate the element and method.
 * 
 * @return true if the element and method should be generated
 */
public boolean generateUpdateByPrimaryKeyWithoutBLOBs() {
  if (isModelOnly) {
    return false;
  }
  
  boolean rc = tableConfiguration.isUpdateByPrimaryKeyStatementEnabled()
      && introspectedTable.hasPrimaryKeyColumns()
      && introspectedTable.hasBaseColumns();
  return rc;
}

代码示例来源:origin: roncoo/roncoo-mybatis-generator

/**
 * Implements the rule for generating the update by primary key with BLOBs
 * SQL Map element and DAO method. If the table has a primary key as well as
 * other BLOB fields, and the updateByPrimaryKey statement is allowed, then
 * generate the element and method.
 * 
 * @return true if the element and method should be generated
 */
public boolean generateUpdateByPrimaryKeyWithBLOBs() {
  if (isModelOnly) {
    return false;
  }
  
  boolean rc = tableConfiguration.isUpdateByPrimaryKeyStatementEnabled()
      && introspectedTable.hasPrimaryKeyColumns()
      && introspectedTable.hasBLOBColumns();
  return rc;
}

代码示例来源:origin: handosme/mybatis-generator-plus

/**
 * Implements the rule for generating the update by primary key with BLOBs
 * SQL Map element and DAO method. If the table has a primary key as well as
 * other BLOB fields, and the updateByPrimaryKey statement is allowed, then
 * generate the element and method.
 * 
 * @return true if the element and method should be generated
 */
public boolean generateUpdateByPrimaryKeyWithBLOBs() {
  if (isModelOnly) {
    return false;
  }
  
  boolean rc = tableConfiguration.isUpdateByPrimaryKeyStatementEnabled()
      && introspectedTable.hasPrimaryKeyColumns()
      && introspectedTable.hasBLOBColumns();
  return rc;
}

代码示例来源:origin: handosme/mybatis-generator-plus

/**
 * Implements the rule for generating the update by primary key without
 * BLOBs SQL Map element and DAO method. If the table has a primary key as
 * well as other non-BLOB fields, and the updateByPrimaryKey statement is
 * allowed, then generate the element and method.
 * 
 * @return true if the element and method should be generated
 */
public boolean generateUpdateByPrimaryKeyWithoutBLOBs() {
  if (isModelOnly) {
    return false;
  }
  
  boolean rc = tableConfiguration.isUpdateByPrimaryKeyStatementEnabled()
      && introspectedTable.hasPrimaryKeyColumns()
      && introspectedTable.hasBaseColumns();
  return rc;
}

代码示例来源:origin: cxjava/mybatis-generator-core

/**
 * Implements the rule for generating the update by primary key selective
 * SQL Map element and DAO method. If the table has a primary key as well as
 * other fields, and the updateByPrimaryKey statement is allowed, then
 * generate the element and method.
 * 
 * @return true if the element and method should be generated
 */
public boolean generateUpdateByPrimaryKeySelective() {
  boolean rc = tableConfiguration.isUpdateByPrimaryKeyStatementEnabled()
      && introspectedTable.hasPrimaryKeyColumns()
      && (introspectedTable.hasBLOBColumns() || introspectedTable.hasBaseColumns());
  return rc;
}

代码示例来源:origin: roncoo/roncoo-mybatis-generator

/**
 * Implements the rule for generating the update by primary key selective
 * SQL Map element and DAO method. If the table has a primary key as well as
 * other fields, and the updateByPrimaryKey statement is allowed, then
 * generate the element and method.
 * 
 * @return true if the element and method should be generated
 */
public boolean generateUpdateByPrimaryKeySelective() {
  if (isModelOnly) {
    return false;
  }
  
  boolean rc = tableConfiguration.isUpdateByPrimaryKeyStatementEnabled()
      && introspectedTable.hasPrimaryKeyColumns()
      && (introspectedTable.hasBLOBColumns() || introspectedTable
          .hasBaseColumns());
  return rc;
}

代码示例来源:origin: handosme/mybatis-generator-plus

/**
 * Implements the rule for generating the update by primary key selective
 * SQL Map element and DAO method. If the table has a primary key as well as
 * other fields, and the updateByPrimaryKey statement is allowed, then
 * generate the element and method.
 * 
 * @return true if the element and method should be generated
 */
public boolean generateUpdateByPrimaryKeySelective() {
  if (isModelOnly) {
    return false;
  }
  
  boolean rc = tableConfiguration.isUpdateByPrimaryKeyStatementEnabled()
      && introspectedTable.hasPrimaryKeyColumns()
      && (introspectedTable.hasBLOBColumns() || introspectedTable
          .hasBaseColumns());
  return rc;
}

代码示例来源:origin: org.mybatis.generator/mybatis-generator-core

/**
 * Implements the rule for generating the update by primary key without
 * BLOBs SQL Map element and DAO method. If the table has a primary key as
 * well as other non-BLOB fields, and the updateByPrimaryKey statement is
 * allowed, then generate the element and method.
 * 
 * @return true if the element and method should be generated
 */
@Override
public boolean generateUpdateByPrimaryKeyWithoutBLOBs() {
  if (isModelOnly) {
    return false;
  }
  if (ListUtilities.removeGeneratedAlwaysColumns(introspectedTable.getBaseColumns()).isEmpty()) {
    return false;
  }
  boolean rc = tableConfiguration.isUpdateByPrimaryKeyStatementEnabled()
      && introspectedTable.hasPrimaryKeyColumns()
      && introspectedTable.hasBaseColumns();
  return rc;
}

代码示例来源:origin: org.mybatis.generator/mybatis-generator-core

/**
 * Implements the rule for generating the update by primary key with BLOBs
 * SQL Map element and DAO method. If the table has a primary key as well as
 * other BLOB fields, and the updateByPrimaryKey statement is allowed, then
 * generate the element and method.
 * 
 * @return true if the element and method should be generated
 */
@Override
public boolean generateUpdateByPrimaryKeyWithBLOBs() {
  if (isModelOnly) {
    return false;
  }
  if (ListUtilities.removeGeneratedAlwaysColumns(introspectedTable.getNonPrimaryKeyColumns()).isEmpty()) {
    return false;
  }
  boolean rc = tableConfiguration.isUpdateByPrimaryKeyStatementEnabled()
      && introspectedTable.hasPrimaryKeyColumns()
      && introspectedTable.hasBLOBColumns();
  return rc;
}

代码示例来源:origin: org.mybatis.generator/mybatis-generator-core

/**
 * Implements the rule for generating the update by primary key selective
 * SQL Map element and DAO method. If the table has a primary key as well as
 * other fields, and the updateByPrimaryKey statement is allowed, then
 * generate the element and method.
 * 
 * @return true if the element and method should be generated
 */
@Override
public boolean generateUpdateByPrimaryKeySelective() {
  if (isModelOnly) {
    return false;
  }
  if (ListUtilities.removeGeneratedAlwaysColumns(introspectedTable.getNonPrimaryKeyColumns()).isEmpty()) {
    return false;
  }
  boolean rc = tableConfiguration.isUpdateByPrimaryKeyStatementEnabled()
      && introspectedTable.hasPrimaryKeyColumns()
      && (introspectedTable.hasBLOBColumns() || introspectedTable
          .hasBaseColumns());
  return rc;
}

相关文章

微信公众号

最新文章

更多

TableConfiguration类方法