class DBI::DBD::OCI8::BindType::DBIDate

def get()

def get()
  # get an Oradate from the bind handle,
  # then convert it to a DBI::Date.
  val = super()
  return nil if val.nil?
  DBI::Date.new(val.year, val.month, val.day)
end