Something new undefined method

Hi all, sorry for the basic questions,

Here is one I have not encountered :

c:/dev/cgi-bin/Project.rb:29:in projectCode': undefined method[]’ for nil
(NameError)

undefined method but I cannot see a problem with this

def projectCode
return @data[‘prj_id’]
end

and im populating my HTML as follows with a here document <<-

Code

once again thanks to you all much appreciated …

Graeme Matthew
Analyst Programmer
Mercer Investment Consulting
Level 29, 101 Collins Street, Melbourne, VIC, 3001, Australia
Tel - 61 3 9245 5352 Fax - 61 3 9245 5330
visit http://www.merceric.com

···

__


This e-mail and any attachments may be confidential or legally privileged.
If you received this message in error or are not the intended recipient, you
should destroy the e-mail message and any attachments or copies, and you are
prohibited from retaining, distributing, disclosing or using any information
contained herein. Please inform us of the erroneous delivery by return
e-mail.

Thank you for your cooperation.


ec03/04

Here is one I have not encountered :

c:/dev/cgi-bin/Project.rb:29:in projectCode': undefined method ’ for
nil
(NameError)

undefined method but I cannot see a problem with this

def projectCode
return @data[‘prj_id’]
end

It’s a runtime error (the most common one I see).
Apparently @data has the value nil when you
try to apply to it…

Hal

···

----- Original Message -----
From: “Matthew, Graeme” Graeme.Matthew@mercer.com
To: “ruby-talk ML” ruby-talk@ruby-lang.org
Sent: Thursday, September 19, 2002 10:15 PM
Subject: Something new undefined method