Module Sequel::SQLComments
In: lib/sequel/extensions/sql_comments.rb

Methods

comment  

Public Instance methods

Return a modified copy of the dataset that will use the given comment. To uncomment a commented dataset, pass nil as the argument.

[Source]

    # File lib/sequel/extensions/sql_comments.rb, line 58
58:     def comment(comment)
59:       clone(:comment=>(format_sql_comment(comment) if comment))
60:     end

[Validate]