From: Alexey Nik Date: 2008-02-19T04:08:38+09:00 Subject: Create record into Oracle DB Hello all, there is part of my code : folder = Folder1.new() folder.ID = @id folder.CLIENT_NAME = @un folder.TREE_NAME = @tn folder.save() when i test it on mySql all work right, but when i try it with Oracle i got this error #NoMethodError (undefined method `ID=' for #). I try again with other ruby method Folder1.create(:ID => @id, :CLIENT_NAME => @un, :TREE_NAME => @tn) and again got error : #NoMethodError (undefined method `CLIENT_NAME=' for #) Other actions (e.g. Folder1.find(:all,:conditions => "ID ='"+Id.to_s+"'")) works good. Smb know why Oracle return error #NoMethodError -- Posted via http://www.ruby-forum.com/.