Hello everyone,

I've been struggling with something that is probably very simple.

I need to save an entry from an atom feed that has a datetime string
like this:
2010-07-20T11:49:19.000Z
which is an XMLSchema date time.

I've tried many variations around:

glog.elements.each("published") do |element|
                @snapshot.entrycreated =
Time.xmlschema(element.text).to_s(:db)
end

If I save that to a regular string I get what looks correct to me:
"2010-07-20 11:49:19"
but saved in the entrycreated column it outputs as: "Sat Jan 01
11:49:19 UTC 2000"

Can anyone help me with the correct code to save this datetime
correctly pleased.

In case it's relevant, on my dev machine I have sqlite. Eventually it
will be on mysql.
Thanks for any help,
Steve


-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to