class Storing::AbstractStore

Public Instance Methods

delete(entity_hash={}) click to toggle source
# File lib/storing/abstract/abstract_store.rb, line 19
def delete entity_hash={}
        raise NotImplementedError
end
insert(entity_hash={}) click to toggle source
# File lib/storing/abstract/abstract_store.rb, line 11
def insert entity_hash={}
        raise NotImplementedError
end
primary_key() click to toggle source
# File lib/storing/abstract/abstract_store.rb, line 31
def primary_key
        raise NotImplementedError
end
query(query_obj) click to toggle source
# File lib/storing/abstract/abstract_store.rb, line 3
def query query_obj
        raise NotImplementedError
end
select(conditions={}) click to toggle source
# File lib/storing/abstract/abstract_store.rb, line 7
def select conditions={}
        raise NotImplementedError
end
table_name() click to toggle source
# File lib/storing/abstract/abstract_store.rb, line 27
def table_name
        raise NotImplementedError
end
transaction() click to toggle source
# File lib/storing/abstract/abstract_store.rb, line 23
def transaction
        raise NotImplementedError
end
update(entity_hash={}) click to toggle source
# File lib/storing/abstract/abstract_store.rb, line 15
def update entity_hash={}
        raise NotImplementedError
end