zoukankan      html  css  js  c++  java
  • 使用SQLite数据库存储数据(2)向表中插入记录

    向表中插入记录

    向数据表Notebook中添加一条新的记事日志,成功插入记录后,会显示一个提醒视图。
    - (IBAction)addNote:(id)sender {
    char *errMsg;

    const char *dbpath = [databasePath UTF8String];

    if(sqlite3_open(dbpath, &noteDB) == SQLITE_OK){
    NSString *insertSQL = [NSString stringWithFormat:@"INSERT INTO Notebook(Whattime, Address, What, Who, Note) VALUES(\"%@\", \"%@\",\"%@\", \"%@\", \"%@\")", self.whenField.text, self.whereField.text, self.whatField.text, self.whoField.text, self.noteView.text];
    const char *insert_stmt = [insertSQL UTF8String];

    if (sqlite3_exec(noteDB, insert_stmt, NULL, NULL, &errMsg) == SQLITE_OK) {
    self.whenField.text = @"";
    self.whereField.text = @"";
    self.whatField.text = @"";
    self.whoField.text = @"";
    self.noteView.text = @"";
    [self doAlert:@"添加成功!"];
    } else {
    NSLog(@"插入记录错误: %s", errMsg);
    sqlite3_free(errorMsg);
    }

    sqlite3_close(noteDB);
    }
    }
    显示提醒视图的代码:
    - (void)doAlert:(NSString *)inMessage{
    UIAlertView *alertDialog;
    alertDialog = [[UIAlertView alloc]
    initWithTitle:@"提示消息" message:inMessage  delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
    [alertDialog show];
    }

    错误信息的处理

    如果在多个地方使用errorMsg,那么每次使用完毕要清空一下字串- sqlite3_free(errorMsg),示例代码如下所示:
    if (sqlite3_exec(database, createSql, NULL, NULL, &errorMsg)==SQLITE_OK) {
    NSLog(@"create ok.");
    }else {
    NSLog(@"error: %s",errorMsg);
    sqlite3_free(errorMsg);
    }

    范例App运行界面如下图所示。本教程的具体内容及其范例App都收录在《一步一步学习iOS 6 编程》的最新版PDF文件中。

  • 相关阅读:
    最近迷上用dvd字幕学习英语
    原始套接字
    c语言socket编程
    inet_aton和inet_network和inet_addr三者比较
    用man来查找c函数库
    ubuntu的系统日志配置文件的位置
    复制文件
    vim复制粘贴解密(转)
    vim的自动补齐功能
    两个数据结构ip和tcphdr
  • 原文地址:https://www.cnblogs.com/tuncaysanli/p/2727951.html
Copyright © 2011-2022 走看看