Displaying 1 result from an estimated 1 matches for "publications_controller".
2005 Oct 04
2
Empty fields and Oracle CLOBs
I have a field that is a clob within an Oracle database on Rails
0.13. Things have been working well until I tried to submit the field
empty via a rails app at which point the following error was
returned:
ORA-24801: illegal parameter value in OCI lob function
/app/controllers/publications_controller.rb:64:in `update''
The line in question was:
if @publication.update_attributes(params[:publication])
The field in question was created with the following SQL:
ABSTRACT CLOB DEFAULT NULL,
Is this a rails error talking to Oracle or is it a misconfiguration
on my end?
_________________...