-2

直到现在我已经使用数组将数据插入到 IOS 的表中,现在我想使用一个数据库(sqlite),我需要从该数据库中获取数据并将该数据插入到表中。请帮我。

提前致谢。

4

1 回答 1

5

如果您是 sqlite 的初学者并想学习它,请转到以下链接。

1) IOS Sqlite3 和 db 中的数据库

2) http://www.apptite.be/tutorial_ios_sqlite.php

3) http://maniacdev.com/2011/11/tutorial-easy-ios-databases-with-sqlite-and-fmdb

我还建议您学习 FMDB(sqlite 的包装器)。

编辑:

假设您有存储学生数据的数据库,然后首先在相应的数组中获取这些数据,例如,

sqlite3_stmt *statement;

NSString *selectSQL = @"SELECT * FROM student";

const char *insert_stmt = [selectSQL UTF8String];
if(sqlite3_prepare_v2(studentData, insert_stmt,  -1, &statement, NULL) == SQLITE_OK)
{
    while(sqlite3_step(statement) == SQLITE_ROW)
    {

        [arrFirstName addObject:[NSString stringWithUTF8String:(char*)sqlite3_column_text(statement, 0)]];

        [arrMiddleName addObject:[NSString stringWithUTF8String:(char*)sqlite3_column_text(statement, 1)]];

        [arrLastName addObject:[NSString stringWithUTF8String:(char*)sqlite3_column_text(statement, 2)]];

        [arrContactNo addObject:[NSString stringWithUTF8String:(char*)sqlite3_column_text(statement, 3)]];

    }

}
[tblStudent reloadData];
}

Suppose You have table named "tblStudent" then your data source methods will look like this

  -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  {
      return 1;
  }

  -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  {
        return [arrFirstName count];
  }

  -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  {
         UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"myCell"];
         cell.textLabel.text = [NSString stringWithFormat:@"%@ %@",[arrFirstName  objectAtIndex:indexPath.row],[arrLastName objectAtIndex:indexPath.row]];
         cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
         return cell;
  }
于 2013-10-24T10:06:30.190 回答