Represents a SQL NULL.
[Source]
# File lib/dbi/types.rb, line 51 def self.parse(obj) return nil if obj.to_s.match(/^null$/i) return obj end
[Validate]