ruby 1.9.2
rails 3.0.0
ruby-oci 2.0.4
activerecord-oracle_enhanced-adapter 1.3.1
for example table named users(id:number(38,0), name)
user = User.new
user.name ='test'
user.save! # is successful
user.id # got nil
user.name # got 'test'
and in the database I have sequence named "USERS_SEQ" and worked well(nextval or currentval is right)
What's the problem?