I'm using dbaccess for my project. In my project, one dbobject's commit is not working. My dbobject is Message like:
#import <DBAccess/DBAccess.h>
@interface MessageObject : DBObject
@property (strong) NSString *to;
@property (strong) NSString *from;
@property (strong) NSString *message;
@property (strong) NSString *_id;
@property int messageType;
@property long long messageSentTime;
@end
#import "MessageObject.h"
@implementation MessageObject
@dynamic to, from, message, _id;
@dynamic messageType;
@dynamic messageSentTime;
@end
For this object, when I commit, commit is not working. For all other object's commit is working. Can anyone help me? Thanks in adv.