Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 01-12-2012, 10:40 AM   #1 (permalink)
Registered Member
 
Join Date: Oct 2011
Posts: 54
mini998 is on a distinguished road
Default Storing date from date picker in to sqlite DB as DATETIME type

I have date picker called 'dob' in my view , and in my sqlite table I have a column named DOB as DATETIME type.

When I try to save data to sqlite DB like below I get an error saying

Code:
Unhandled parameter type: __NSDate
Code:
 NSDictionary *player =[[NSDictionary alloc] initWithObjectsAndKeys: 
                           firstName.text,@"FirstName",
                           middleName.text,@"MiddleName",
                           familyName.text,@"Familyname",
                           dob.date,@"DOB",
Do I have to format the value from date picker before storing in DB?

cheers

Last edited by mini998; 01-12-2012 at 10:42 AM.
mini998 is offline   Reply With Quote
Old 01-12-2012, 11:22 AM   #2 (permalink)
Cocoa Junkie
 
Duncan C's Avatar
 
Join Date: Dec 2008
Location: Northern Virginia
Posts: 6,003
Duncan C has a spectacular aura about
Default

Quote:
Originally Posted by mini998 View Post
I have date picker called 'dob' in my view , and in my sqlite table I have a column named DOB as DATETIME type.

When I try to save data to sqlite DB like below I get an error saying

Code:
Unhandled parameter type: __NSDate
Code:
 NSDictionary *player =[[NSDictionary alloc] initWithObjectsAndKeys: 
                           firstName.text,@"FirstName",
                           middleName.text,@"MiddleName",
                           familyName.text,@"Familyname",
                           dob.date,@"DOB",
Do I have to format the value from date picker before storing in DB?

cheers

Depends on your needs. You can convert your date to a double precision floating point number very easily. That gives you very fast sorting, as well as fast calculation of the time span between dates. That gives you sub-millisecond accuracy. You could probably also cast the values to floats to make them smaller for storage, with a slight loss of accuracy.

NSDate has a method timeIntervalSinceReferenceDate that lets you convert dates to a double, and another method that lets you convert those values into dates.

If you just need month/day/year, you can build a date string and save that, using a date formatter, or write your own code using NSCalendar and NSDateComponents.
__________________
Regards,

Duncan C
WareTo

Check out our apps in the Apple App store


Check out this password generator app that shows various techniques including using a data container singleton object to share data between objects in your project.

See this tutorial on using UIView animations and layer animations:

See this thread on generating random, non-repeating text

Check out a very cool Macintosh Kaleidoscopes app called ScopeWorks that we released to the Mac App store.
Duncan C is offline   Reply With Quote
Old 01-12-2012, 12:02 PM   #3 (permalink)
Registered Member
 
Join Date: Oct 2011
Posts: 54
mini998 is on a distinguished road
Default

Thanks duncan

I used this instead
Code:
    
    NSDictionary *player =[[NSDictionary alloc] initWithObjectsAndKeys: 
                           firstName.text,@"FirstName",
                           middleName.text,@"MiddleName",
                           familyName.text,@"Familyname",
                           [dob.date timeIntervalSince1970],@"DOB",nil];

now it throws an exception , and point to the last line .when I comment that line program works fine


Code:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:
 '-[__NSPlaceholderDictionary initWithObjectsAndKeys:]:
 second object of each pair must be non-nil.  Or, did you forget to nil-terminate your parameter list?'
cheers
mini998 is offline   Reply With Quote
Old 01-12-2012, 01:30 PM   #4 (permalink)
Cocoa Junkie
 
Duncan C's Avatar
 
Join Date: Dec 2008
Location: Northern Virginia
Posts: 6,003
Duncan C has a spectacular aura about
Default

Quote:
Originally Posted by mini998 View Post
Thanks duncan

I used this instead
Code:
    
    NSDictionary *player =[[NSDictionary alloc] initWithObjectsAndKeys: 
                           firstName.text,@"FirstName",
                           middleName.text,@"MiddleName",
                           familyName.text,@"Familyname",
                           [dob.date timeIntervalSince1970],@"DOB",nil];

now it throws an exception , and point to the last line .when I comment that line program works fine


Code:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:
 '-[__NSPlaceholderDictionary initWithObjectsAndKeys:]:
 second object of each pair must be non-nil.  Or, did you forget to nil-terminate your parameter list?'
cheers
The NSDate method timeIntervalSince1970 returns a double, which is a scalar data type, not an object.

You can only add objects to dictionaries.

You need to convert your value to an NSNumber object if you want to save it in a dictionary:



Code:
    
    NSDictionary *player =[[NSDictionary alloc] initWithObjectsAndKeys: 
                           firstName.text,@"FirstName",
                           middleName.text,@"MiddleName",
                           familyName.text,@"Familyname",
                           [NSNumber numberWithDouble: [dob.date timeIntervalSince1970],@"DOB",nil];
__________________
Regards,

Duncan C
WareTo

Check out our apps in the Apple App store


Check out this password generator app that shows various techniques including using a data container singleton object to share data between objects in your project.

See this tutorial on using UIView animations and layer animations:

See this thread on generating random, non-repeating text

Check out a very cool Macintosh Kaleidoscopes app called ScopeWorks that we released to the Mac App store.
Duncan C is offline   Reply With Quote
Old 01-12-2012, 05:39 PM   #5 (permalink)
Registered Member
 
Join Date: Oct 2011
Posts: 54
mini998 is on a distinguished road
Default

Thanks duncan ,I used this and it worked

Code:
[NSString stringWithFormat:@"%f", [dob.date timeIntervalSince1970]],@"DOB",
mini998 is offline   Reply With Quote
Old 01-12-2012, 09:32 PM   #6 (permalink)
Cocoa Junkie
 
Duncan C's Avatar
 
Join Date: Dec 2008
Location: Northern Virginia
Posts: 6,003
Duncan C has a spectacular aura about
Default

Quote:
Originally Posted by mini998 View Post
Thanks duncan ,I used this and it worked

Code:
[NSString stringWithFormat:@"%f", [dob.date timeIntervalSince1970]],@"DOB",
Use NSNumber to save numbers, not NSString. NSNumber saves the exact value, efficiently, and can be sorted, indexed, etc.
__________________
Regards,

Duncan C
WareTo

Check out our apps in the Apple App store


Check out this password generator app that shows various techniques including using a data container singleton object to share data between objects in your project.

See this tutorial on using UIView animations and layer animations:

See this thread on generating random, non-repeating text

Check out a very cool Macintosh Kaleidoscopes app called ScopeWorks that we released to the Mac App store.
Duncan C is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 379
10 members and 369 guests
7twenty7, Atatator, glenn_sayers, guusleijsten, j.b.rajesh@gmail.com, QuantumDoja, sacha1996, Sami Gh, tim0504, VinceYuan
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,674
Threads: 94,122
Posts: 402,907
Top Poster: BrianSlick (7,990)
Welcome to our newest member, Atatator
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 05:40 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0