Fixnum problem

Sir can i know what is the meaning of the phrase ‘comparison of Fixnum
with nil failed’

I want to pass two parameters to a method in a model file…
bt wen i pass an integer then it gives the above error…
Please help…

Quoting manish belsare [email protected]:

Sir can i know what is the meaning of the phrase ‘comparison of Fixnum
with nil failed’

I want to pass two parameters to a method in a model file…
bt wen i pass an integer then it gives the above error…
Please help…

Sounds to me like you have nothing (nil) when you expect something
(perhaps the integer?). Does your method then try to do some sort of
comparison, for example:
if myparam > 3

If myparam is nil for some reason, you might get that error. Try
logging your input just after you get into the method. You may also
want to log its class (e.g. myparam.class).

sir even if i try to call a method with a different name in the same
Model file than also i get the same Finxum problem…

I want to know what does that error mean?

Quoting Manish B. [email protected]:

sir even if i try to call a method with a different name in the same
Model file than also i get the same Finxum problem…

I want to know what does that error mean?

This really isn’t an Engines related question. You should probably be
be asking this on the general Rails forum;
[email protected]

When you post there, please include the code that is erroring and the
full error message - including stack trace. Without seeing the actual
code, it is nearly impossible to determain the cause of the error in
enough detail to explain it.

It is hard to understand it.

add code on post here.