Package liquibase.sql

Examples of liquibase.sql.SingleLineComment


public class CommentGenerator extends AbstractSqlGenerator<CommentStatement> {

  @Override
    public Sql[] generateSql(CommentStatement comment, Database database, SqlGeneratorChain sqlGeneratorChain) {
        return new Sql[] {
                new SingleLineComment(comment.getText(), database.getLineComment())    
    };
  }
View Full Code Here

TOP

Related Classes of liquibase.sql.SingleLineComment

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.