class OCI8

def self.in_cond(bind_name_prefix, array, type = nil, length = nil)

Returns:
  • (OCI8::InCondBindHelper) -

Parameters:
  • length (Integer) -- maximum bind length for string values. This is used as the fourth argument of {OCI8::Cursor#bind_param}.
  • type (Class) -- data type. This is used as the third argument of {OCI8::Cursor#bind_param}.
  • array (Object) -- an array of values to be bound.
  • bind_name_prefix (Symbol) -- prefix of the place holder name
def self.in_cond(bind_name_prefix, array, type = nil, length = nil)
  InCondBindHelper.new(bind_name_prefix, array, type, length)
end