「ios開発」SQLite3を利用してDBに接続する
– (void) _connectDB{
//1>Sandboxのパスを取得する際の初期化
NSString * path=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
path=[path stringByAppendingPathComponent:@"new.sqlite"];
NSLog(@"%@",path);
//2>接続しない場合、接続を作成
if(SQLITE_OK==sqlite3_open(path.UTF8String, &sqlite)){
NSLog(@"データベースの作成に成功");
}else {
NSLog(@"データベースの作成に失敗!");
}
}