On Nov 1, 7:54 am, mrbless <[EMAIL PROTECTED]> wrote:
> assuming 0 as false and 1 as true. Try it out
> confirm_client=ConfirmClient.find(5) # I am supposing the client with
> id 5
How true/false are represented in the DB is database dependant. You
don't need to worry about that though - confirm_client.confirm is
typecasted by rails to either true or false no matter what the
underlying column stores (t/f, 0/1, Y/N etc...)
Fred
> if confirm_client.confirm==1 #yes indeed this client is verified
> do_something
> else #not verified client
> do_something_else probably redirect to some place with
> flash[:notice]
> end
>
> On Nov 1, 10:58 am, "Ishara Gunathilake" <[EMAIL PROTECTED]>
> wrote:
>
> > i have a table called "confirm_clients",there are 3columns,they are
> > t.column :user_id, :string
> > t.column :msg_id, :string
> > t.column :confirm, :boolean
>
> > i want to check whether the boolean value of confirm is true
> > when a given user_id and msg_id,plz can anyone how can i do it
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---