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