Is it possible to call a method on a object that changes the state of the object in the Oracle database and have that state reflected in the local ruby variable?
Ex.
my_obj = plsql.my_obj_type(:attr1=>'test',:attr2=>null)
my_obj.is_attr2_null.should == true
my_obj.set_attr2(:attr2=>'test1')
my_obj.is_attr2_null.should == false