Search the web
Sign In
New User? Sign Up
puneruby
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 704 - 734 of 1457   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
704
Hi Rajesh, The intention of my post was to raise awareness about issues with Vista RC1 and specifically client side issues of IE7 RC1 on Vista RC1. Its not...
Ashish Kulkarni
ashishkulkar...
Offline Send Email
Oct 1, 2006
9:09 am
705
Thanks & cheers To: puneruby@...: ashish@...: Sat, 30 Sep 2006 11:49:13 +0100Subject: RE: [puneruby] IE7 RC1 on Vista RC1 issues ...
Rajesh GS
gsronline
Offline Send Email
Oct 2, 2006
8:45 am
706
Hi guys which version of mysql do you people use? Older versions of mysql dont have concepts of views/ stored procedures. I have MySQL version 4.1.20 on...
aditya nalla
aditya_nalla
Offline Send Email
Oct 3, 2006
12:00 pm
707
hi I guess mysql 5.0 was released with the intentions of creating stored procedures, i am using mysql 5.0. But with instant rails, you have 4.1.9bundled with...
Priyank Kapadia
priyank_omni...
Offline Send Email
Oct 4, 2006
12:20 am
708
Hi Aditya, You are right Aditya, I had to shift to MySQL version 5 as views were not supported in version 4 Regards, NAYAK ... [Non-text portions of this...
NAYAK
kvn_83
Offline Send Email
Oct 4, 2006
12:22 am
709
Hello, Please pardon me if my question sounds really dumb. I am trying to figure out how to pass the id of the user at login to another controller. Here is a...
sukha
divya_khullar
Offline Send Email
Oct 4, 2006
4:41 am
710
hi No question is dumb!! Assume you have a customer form, you click on a customer record, and customer id is sent to the http header you can fetch the value...
Priyank Kapadia
priyank_omni...
Offline Send Email
Oct 4, 2006
10:44 am
711
Hi Sukha !! u can easily pass id pr whatever parameter u want to pass as below.. redirect_to :controller=>"plan", :action => "list", :idtobePass => id try out...
Himanshu Prakash
vision_2910
Offline Send Email
Oct 4, 2006
10:45 am
712
Hello, redirect_to :controller=>'plan' , :action=>'list' , :id=>user_id where user_id contain id of user. Check this. --Harish sukha <divya_khullar@...>...
haribhau ingale
hari31582
Offline Send Email
Oct 4, 2006
2:11 pm
714
Hello, I am passing the actual mySQL query in rails and i dont get any output. Neither is rails giving my any errors message. Please can some one point out...
sukha
divya_khullar
Offline Send Email
Oct 5, 2006
1:07 am
715
Um... Actually, that's not the URL I meant to paste. Try this one instead: http://wiki.rubyonrails.com/rails/pages/HowtoWorkWithSessions RSL ... [Non-text...
Russell Norris
swim_community
Offline Send Email
Oct 5, 2006
1:07 am
716
Thanks Priyank and Himanshu. It worked i passed the id using Himanshu's idea and then i used Priyank method to send it to MySQL for query. Thanks again Divya ...
sukha
divya_khullar
Offline Send Email
Oct 5, 2006
1:08 am
717
It sounds to me like you might be better served by the session variable. Here's a good introduction to sessions in Rails: ...
Russell Norris
swim_community
Offline Send Email
Oct 5, 2006
1:10 am
718
Thanks Russell. I am little lost if i declare model :user in the application.rb how can i access user information in different controller? Is there a script or...
Divya
divya_khullar
Offline Send Email
Oct 5, 2006
3:32 am
719
Have you tried running the SQL statement directly in a MySQL tool outside of Rails to verify that it is actually returning the data you are expecting? I think...
Bill Froelich
wrfroelich
Offline Send Email
Oct 5, 2006
4:29 am
720
... The above code contains syntax error. Try to figure it out on your own! Regards, Anil Wadghule [Non-text portions of this message have been removed]...
Anil Wadghule
anildigital
Offline Send Email
Oct 5, 2006
5:51 am
721
Hi everyone, Now that there's been a lot of questions about databases, I want to ask something too: I'm trying to develop a little Rails app for the invoicing...
Gabriel Saldaña
gabrielsaldanat
Offline Send Email
Oct 5, 2006
5:51 am
722
Hi Gabriel, Traditionally SQL provides primary, unique, foreign,custom key relationships for data integrity. But in rails, the data integrity is being insured...
hemant
technix88
Offline Send Email
Oct 5, 2006
10:25 am
723
Indeed the code has sql syntax problem(Again, i will leave it to you...to figure it out..really silly thing) If you are not sure about sql, why don't you use...
hemant
technix88
Offline Send Email
Oct 5, 2006
10:28 am
724
Hello, change you query as follows def self.image_find_ transverse( para) @id = para @imType = 'tar' Image.find_by_ sql ("SELECT img_url FROM images WHERE...
haribhau ingale
hari31582
Offline Send Email
Oct 5, 2006
10:29 am
725
You are using the ruby varaible @id directly in to the string, so plan_id is compared to "@id" not the value of @id. Instead put all ur ruby variables in #{}. ...
aditya nalla
aditya_nalla
Offline Send Email
Oct 5, 2006
10:39 am
726
... Is following correct? Image.find_by_sql ("SELECT img_url FROM images WHERE plan_id = #{@id} AND img_type = '#{@imType}'") -- Business is made up of...
Shantanoo Mahajan
shantanu.mah...
Offline Send Email
Oct 5, 2006
10:39 am
727
Thanx Hemant, I'll try that out and see how it works, but this seems to be specific of MySQL (version 5+) and PostgreSQL. Is there a way to do this...
Gabriel Saldaña
gabrielsaldanat
Offline Send Email
Oct 6, 2006
10:23 am
728
Hi All !! i've update method in salesagents_controller as-- def update @salesagent = Salesagent.find(params[:id]) #render_text params[:salesagent].inspect if...
Himanshu Prakash
vision_2910
Offline Send Email
Oct 6, 2006
10:25 am
729
Hello, Could you please help me regarding how to send email through RoR application? Thanks, Suhas...
suhas_p456
Offline Send Email
Oct 6, 2006
12:03 pm
730
As it looks like for salesagent model, handphone is actually a Fixnum, whereas your validation code expects it to be a Array...which is not the case and hence...
hemant
technix88
Offline Send Email
Oct 6, 2006
12:06 pm
731
Have you looked at the information RoR wiki? http://wiki.rubyonrails.org/rails/pages/HowToSendEmailsWithActionMailer I've used that info to good effect myself....
Russell Norris
swim_community
Offline Send Email
Oct 6, 2006
12:21 pm
732
Sure its possible. If you want implement the referential integrity through Ruby code. Class LineItems < ActiveRecord::Base has_many :products ,:dependent =>...
hemant
technix88
Offline Send Email
Oct 6, 2006
12:40 pm
733
Please have a look at at Chapter #24 of "Agile Web Development With Rails, 2nd edition". Step by step instructions are given there and worked as a charm for...
hemant
technix88
Offline Send Email
Oct 6, 2006
12:43 pm
734
Hi ! Hemant thanks for having a look on my prob. u r right..i've found solution by converting handphone to string. Himanshu ! hemant <technix88@...>...
Himanshu Prakash
vision_2910
Offline Send Email
Oct 7, 2006
1:31 am
Messages 704 - 734 of 1457   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help