Method: Og::SqlStore#insert_sql

Defined in:
lib/og/store/sql.rb

#insert_sql(sql, klass) ⇒ Object

The insert sql statements.



890
891
892
893
894
895
# File 'lib/og/store/sql.rb', line 890

def insert_sql(sql, klass)
  %{
  store.exec "#{sql}"
  @#{klass.primary_key} = store.last_insert_id
  }
end