org.hibernate.mapping.Column.getComment()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(5.1k)|赞(0)|评价(0)|浏览(120)

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

Column.getComment介绍

暂无

代码示例

代码示例来源:origin: hibernate/hibernate-orm

public Iterator sqlCommentStrings(Dialect dialect, String defaultCatalog, String defaultSchema) {
  List comments = new ArrayList();
  if ( dialect.supportsCommentOn() ) {
    String tableName = getQualifiedName( dialect, defaultCatalog, defaultSchema );
    if ( comment != null ) {
      comments.add( "comment on table " + tableName + " is '" + comment + "'" );
    }
    Iterator iter = getColumnIterator();
    while ( iter.hasNext() ) {
      Column column = (Column) iter.next();
      String columnComment = column.getComment();
      if ( columnComment != null ) {
        comments.add( "comment on column " + tableName + '.' + column.getQuotedName( dialect ) + " is '" + columnComment + "'" );
      }
    }
  }
  return comments.iterator();
}

代码示例来源:origin: hibernate/hibernate-orm

protected void applyComments(Table table, QualifiedName tableName, List<String> sqlStrings) {
  if ( dialect.supportsCommentOn() ) {
    if ( table.getComment() != null ) {
      sqlStrings.add( "comment on table " + tableName + " is '" + table.getComment() + "'" );
    }
    final Iterator iter = table.getColumnIterator();
    while ( iter.hasNext() ) {
      Column column = (Column) iter.next();
      String columnComment = column.getComment();
      if ( columnComment != null ) {
        sqlStrings.add( "comment on column " + tableName + '.' + column.getQuotedName( dialect ) + " is '" + columnComment + "'" );
      }
    }
  }
}

代码示例来源:origin: hibernate/hibernate-orm

String columnComment = column.getComment();
if ( columnComment != null ) {
  alter.append( dialect.getColumnComment( columnComment ) );

代码示例来源:origin: hibernate/hibernate-orm

String columnComment = col.getComment();
if ( columnComment != null ) {
  buf.append( dialect.getColumnComment( columnComment ) );

代码示例来源:origin: hibernate/hibernate-orm

String columnComment = col.getComment();
if ( columnComment != null ) {
  buf.append( dialect.getColumnComment( columnComment ) );

代码示例来源:origin: hibernate/hibernate-orm

copy.setSqlType( column.getSqlType() );
copy.setCheckConstraint( column.getCheckConstraint() );
copy.setComment( column.getComment() );
copy.setDefaultValue( column.getDefaultValue() );
key.addColumn( copy );

代码示例来源:origin: hibernate/hibernate-orm

copy.setSqlType( column.getSqlType() );
copy.setCheckConstraint( column.getCheckConstraint() );
copy.setComment( column.getComment() );
copy.setDefaultValue( column.getDefaultValue() );
manyToOne.addColumn( copy );

代码示例来源:origin: org.hibernate/hibernate-annotations

copy.setSqlType( column.getSqlType() );
copy.setCheckConstraint( column.getCheckConstraint() );
copy.setComment( column.getComment() );
copy.setDefaultValue( column.getDefaultValue() );
key.addColumn( copy );

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core

while ( iter.hasNext() ) {
  Column column = (Column) iter.next();
  String columnComment = column.getComment();
  if ( columnComment != null ) {
    StringBuffer buf = new StringBuffer()

代码示例来源:origin: hibernate/hibernate

while ( iter.hasNext() ) {
  Column column = (Column) iter.next();
  String columnComment = column.getComment();
  if ( columnComment!=null ) {
    StringBuffer buf = new StringBuffer()

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate

while ( iter.hasNext() ) {
  Column column = (Column) iter.next();
  String columnComment = column.getComment();
  if ( columnComment != null ) {
    StringBuffer buf = new StringBuffer()

代码示例来源:origin: hibernate/hibernate

String columnComment = col.getComment();
if (columnComment!=null) alter.append( dialect.getColumnComment(columnComment) );

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate

String columnComment = column.getComment();
if ( columnComment != null ) {
  alter.append( dialect.getColumnComment( columnComment ) );

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core

String columnComment = column.getComment();
if ( columnComment != null ) {
  alter.append( dialect.getColumnComment( columnComment ) );

代码示例来源:origin: org.hibernate/hibernate-annotations

copy.setSqlType( column.getSqlType() );
copy.setCheckConstraint( column.getCheckConstraint() );
copy.setComment( column.getComment() );
copy.setDefaultValue( column.getDefaultValue() );
manyToOne.addColumn( copy );

代码示例来源:origin: org.jbpm.jbpm3/jbpm-jpdl

String columnComment = column.getComment();
if (columnComment != null) {
 alter.append(dialect.getColumnComment(columnComment));

代码示例来源:origin: jboss.jboss-embeddable-ejb3/hibernate-all

copy.setSqlType( column.getSqlType() );
copy.setCheckConstraint( column.getCheckConstraint() );
copy.setComment( column.getComment() );
copy.setDefaultValue( column.getDefaultValue() );
key.addColumn( copy );

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate

copy.setSqlType( column.getSqlType() );
copy.setCheckConstraint( column.getCheckConstraint() );
copy.setComment( column.getComment() );
copy.setDefaultValue( column.getDefaultValue() );
key.addColumn( copy );

代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core

copy.setSqlType( column.getSqlType() );
copy.setCheckConstraint( column.getCheckConstraint() );
copy.setComment( column.getComment() );
copy.setDefaultValue( column.getDefaultValue() );
key.addColumn( copy );

代码示例来源:origin: org.hibernate.orm/hibernate-core

isNullable(),
    isUnique(),
    getComment(),
    typeConfiguration
);

相关文章