SQLite建立表並添加資料

來源:互聯網
上載者:User

標籤:blog   os   ar   檔案   資料   on   2014   log   amp   

- (void)viewDidLoad {    [super viewDidLoad];    //建立表    [self creatTable];    //插入資料    [self insertTable];}// -----------------------建立一個表--------------------- (void)creatTable{// 1.建立一個資料庫物件    sqlite3 *sqlite3 = nil;    // 2.資料庫的路徑    NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/mySqlite.db"];    // 3.開啟資料庫 (通過指定路徑開啟資料庫檔案,如果沒有就建立)    int result = sqlite3_open([path UTF8String], &sqlite3);    if (result != SQLITE_OK) {        NSLog(@"資料庫開啟失敗!");        return;    }    // 4.建立sql語句    NSString *sql = @"CREATE TABLE Students (id integer PRIMARY KEY,name text)";    // 5.執行SQL語句    char *error = NULL;    result = sqlite3_exec(sqlite3, [sql UTF8String], NULL, NULL, &error);    if (result != SQLITE_OK) {        NSLog(@"執行sql語句失敗!");        // 6.關閉資料庫        sqlite3_close(sqlite3);        return;    }// 6.關閉資料庫    sqlite3_close(sqlite3);}// -------------------------插入資料------------------------- (void)insertTable{// 1.建立一個資料庫物件    sqlite3 *sqlite3 = nil;    // 2.資料庫的路徑    NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/mySqlite.db"];    // 3.開啟資料庫 (通過指定路徑開啟資料庫檔案,如果沒有就建立)    int result = sqlite3_open([path UTF8String], &sqlite3);    if (result != SQLITE_OK) {        NSLog(@"資料庫開啟失敗!");        return;    }    // 4.建立sql語句    // insert into students(id,name) values('123456','李斯')    NSString *sql = @"insert into students(id,name) values(?,?)";    // 5.編譯sql語句    // 建立一個資料控制代碼對象    sqlite3_stmt *stmt = nil;    result = sqlite3_prepare_v2(sqlite3, [sql UTF8String], -1, &stmt, nil);    if (result != SQLITE_OK) {        NSLog(@"編譯失敗");        // 關閉資料庫        sqlite3_close(sqlite3);        return;    }    // 6.綁定資料到資料控制代碼裡面    sqlite3_bind_int(stmt, 1, 123457);    sqlite3_bind_text(stmt, 2, "張三", -1, nil);    // 7.執行資料控制代碼的操作    result = sqlite3_step(stmt);    if (result == SQLITE_ERROR || result == SQLITE_MISUSE) {        NSLog(@"插入失敗");        // 關閉資料控制代碼        sqlite3_finalize(stmt);        // 關閉資料庫        sqlite3_close(sqlite3);        return ;    }    // 8.執行成功    NSLog(@"插入成功");    // 關閉資料控制代碼    sqlite3_finalize(stmt);    // 關閉資料庫    sqlite3_close(sqlite3);       }

SQLite建立表並添加資料

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.