我在我的 iOS 开发中使用 SQLite 数据库(firefox 插件)。我手动将数据插入我的数据库。但第一次运行程序,显示该数据。但是在手动将数据再次插入数据库后,该数据未显示。我是ios开发的初学者。贝娄有我的数据库连接。请帮忙。
- (void)viewDidLoad
{
NSString *defaultDBPath;
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error;
NSString *ddPath = [self getDBPath];
BOOL success = [fileManager fileExistsAtPath:ddPath];
if(!success) {
defaultDBPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"AddressBook.sqlite"];
success = [fileManager copyItemAtPath:defaultDBPath toPath:ddPath error:&error];
if (!success)
NSAssert1(0, @"Failed to create writable database file with message '%@'.", [error localizedDescription]);
}
// const char *dbpath=[ddPath UTF8String];
const char *dbpath1=[ddPath UTF8String];
sqlite3_stmt *statement;
NSMutableArray *company =[[NSMutableArray alloc]init];
if (sqlite3_open(dbpath1, &contactDB)==SQLITE_OK)
{
NSString *querySQL=[NSString stringWithFormat:@"SELECT CompanyName FROM tblCompany order by CompanyName"];
const char *query_stmt=[querySQL UTF8String];
if (sqlite3_prepare_v2(contactDB, query_stmt, -1, &statement, NULL)==SQLITE_OK)
{
int i=0;
while(sqlite3_step(statement)==SQLITE_ROW)
{
NSString *my=[[NSString alloc]initWithUTF8String:(const char*)sqlite3_column_text(statement, 0)];
NSLog(@"name %@",my);
[company insertObject:my atIndex:i];
i=i+1;
companyDetails=[NSDictionary dictionaryWithContentsOfFile:my];
// [[cell textlabel] setText:my];
}
companies =company;
companyKey=[companyDetails allKeys];
sqlite3_finalize(statement);
}
else
NSLog(@"Not connected");
sqlite3_close(contactDB);
}
获取数据库路径方法::
- (NSString *) getDBPath {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory , NSUserDomainMask, YES);
NSString *documentsDir = [paths objectAtIndex:0];
return [documentsDir stringByAppendingPathComponent:@"Address.sqlite"];
}
我尝试了这些,但 ti 没有在我的 iOS 应用程序中显示更新的数据库数据。请给我一个解决方案。