• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Retrieving Boolean from database
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Retrieving Boolean from database


  • Subject: Retrieving Boolean from database
  • From: Mahaboob <email@hidden>
  • Date: Mon, 01 Dec 2008 10:59:12 +0530
  • Thread-topic: Retrieving Boolean from database

Hi,
I'm using QuickLite database to hold some data. I created one column as
Boolean to hold the state of a Checkbox and I inserted the values to the
table. But whenever I'm retrieving the values from database the Boolean
value is return only 1 and so I can't set the state of the Checkbox
correctly.
I used the code to set the Boolean value  to insert:

NSNumber *defValue;
if([cbUseDefault state] == NSOnState)
    defValue = [NSNumber numberWithBool:YES];
else
    defValue = [NSNumber numberWithBool:NO];

And for retrieving I used:

NSNumber * boolVal = [row valueForColumn:@"Contact.UseDefault"];
 if(boolVal>0)
    [cbUseDefault setState:NSOnState];
 else
    [cbUseDefault setState:NSOffState];

Where I got wrong? How can I solve this?

Thanks in advance
mahaboob



_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Retrieving Boolean from database
      • From: "Clark Cox" <email@hidden>
  • Prev by Date: Re: CFMessagePort and GC
  • Next by Date: Re: Retrieving Boolean from database
  • Previous by thread: Re: CFMessagePort and GC
  • Next by thread: Re: Retrieving Boolean from database
  • Index(es):
    • Date
    • Thread