module Sequel::SQLComments

  1. lib/sequel/extensions/sql_comments.rb

Methods

Public Instance

  1. comment

Public Instance methods

comment(comment)

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

[show source]
    # File lib/sequel/extensions/sql_comments.rb
 98 def comment(comment)
 99   clone(:comment=>(format_sql_comment(comment) if comment))
100 end