# File lib/og/connection.rb, line 53
        def save(obj)
                if obj.oid
                        # object allready inserted, update!
                        obj.og_update(self)
                else
                        # not in the database, insert!
                        obj.og_insert(self)
                end
        end