module Sequel::SQLComments

Public Instance Methods

comment(comment) click to toggle source

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

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