24 lines
553 B
Objective-C
24 lines
553 B
Objective-C
//
|
|
// ContactDAO.h
|
|
// Yoosee
|
|
//
|
|
// Created by guojunyi on 14-4-14.
|
|
// Copyright (c) 2014年 guojunyi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "sqlite3.h"
|
|
@class Contact;
|
|
#define DB_NAME @"Yoosee.sqlite"
|
|
#define kContactDBVersion @"kContactDBVersion"
|
|
#define CONTACT_DB_VERSION 1
|
|
@interface ContactDAO : NSObject
|
|
@property (nonatomic) sqlite3 *db;
|
|
|
|
-(BOOL)insertt:(Contact*)contact;
|
|
-(NSMutableArray*)findAll;
|
|
-(BOOL)delete:(Contact*)recent;
|
|
-(BOOL)update:(Contact*)contact;
|
|
-(Contact*)isContact:(NSString*)contactId;
|
|
@end
|