我对sqlite有一个奇怪的问题,这让我发疯了。
我在我的应用程序中实现了一个sqlite数据库,当我通过xcode启动应用程序时,一切正常。在模拟器中以及在我的ipad上。 但是当我构建一个临时版本并在我的ipad上安装ad-hoc版本时,应用程序崩溃,因为它没有从sql数据库中获取数据,因为数据库中没有数据。 在第一次启动时,应该使用从xml文件中获取的数据初始化数据库,然后仅通过sqlite数据库访问数据。 如果从xcode运行,效果很好,但如果从ad-hoc版本运行则不行。
有谁知道为什么会这样,我怎么能解决这个问题?如果需要源代码,我会提供它。
数据库文件包含在捆绑包中,即使它不包含,也会创建它。
提前, Maverick1st
现在我在appDidFinishLaunchingWithOptions
中执行此操作NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDir = [documentPaths objectAtIndex:0];
[AppState sharedInstance].s_databasePath = [documentsDir stringByAppendingPathComponent:[AppState sharedInstance].s_databaseName];
if ([self checkForSQLiteDataBaseFile])
{
if (![self checkForSQLiteDataBaseTable]) {
[self loadDataFromXMLIntoNSDictionary];
}
}
-(BOOL) checkForSQLiteDataBaseFile
{
BOOL ret = NO;
// Check if the SQL database has already been saved to the users phone, if not then copy it over
// Create a FileManager object, we will use this to check the status
// of the database and to copy it over if required
NSFileManager *fileManager = [NSFileManager defaultManager];
// Check if the database has already been created in the users filesystem
// If the database already exists then return without doing anything
if([fileManager fileExistsAtPath:[AppState sharedInstance].s_databasePath])
{
Log2(@"databasePath: %@", [AppState sharedInstance].s_databasePath);
ret = YES;
return ret;
}
// If not then proceed to copy the database from the application to the users filesystem
// Get the path to the database in the application package
NSString *databasePathFromApp = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:[AppState sharedInstance].s_databaseName];
// Copy the database from the package to the users filesystem
[fileManager copyItemAtPath:databasePathFromApp toPath:[AppState sharedInstance].s_databasePath error:nil];
Log2(@"databasePath: %@", [AppState sharedInstance].s_databasePath);
ret = YES;
return ret;
}
这是我的文件路径:databasePath:/ var / mobile / Applications / 0CE5F143-04AC-4E1C-9A94-2B253F86F854 / Documents / KatalogDaten
我还发现,我的数据库是由sqlite打开的,因为以下陈述是真的:
if(sqlite3_open([[AppState sharedInstance].s_databasePath UTF8String], &database) == SQLITE_OK)
的 的 *编辑* * 用iExplorer检查我的ipad上应用程序的文件系统后,我注意到,该表确实存在,并且本身也有内容。但由于我在我的应用程序中的虚拟表上工作,因为我需要全文搜索,我想创建一个虚拟表,如果该数据库中不存在,并且似乎以某种方式失败。如果我发现更多内容,我会提供进一步的更新。
的 的 ** ***编辑
所以,我想我发现错误的位置,但不是导致它的原因。
以下源代码正常执行,但仅在我的ipad上从xcode运行时才返回所需的结果,而不是从我的ipad上的ad-hoc版本运行时。
if(sqlite3_open([[AppState sharedInstance].s_databasePath UTF8String], &database) == SQLITE_OK)
{
NSLog(@"Database opened successfully!");
const char *sqlQuery = [@"select DISTINCT tbl_name from sqlite_master where tbl_name = ?;" UTF8String];
Log2(@"sqlquery for selecting distinct table: %s", sqlQuery);
sqlite3_stmt *compiledQuery;
if(sqlite3_prepare_v2(database, sqlQuery, -1, &compiledQuery, NULL) == SQLITE_OK)
{
sqlite3_bind_text(compiledQuery, 1, [k_db_virtualTableName UTF8String], -1, SQLITE_TRANSIENT);
if(sqlite3_step(compiledQuery))
{
// look if virtual table already exists
if ((char *)sqlite3_column_text(compiledQuery, 0) == nil)
{
NSLog(@"Create virtual table!");
sqlite3_finalize(compiledQuery);
sqlQuery = [[NSString stringWithFormat:@"CREATE VIRTUAL TABLE %@ USING FTS3 (%@);", k_db_virtualTableName, keyString] UTF8String];
Log2(@"sqlQuery: %s", sqlQuery);
if(sqlite3_prepare_v2(database, sqlQuery, -1, &compiledQuery, NULL) == SQLITE_OK)
{
NSLog(@"query for virtual table is ok!");
if(sqlite3_step(compiledQuery))
{
NSLog(@"query for virtual table was executed properly!");
sqlite3_finalize(compiledQuery);
[self fillSQLiteDataBaseTable: k_db_virtualTableName WithDataFromDict: [[[xmlDictionary objectForKey:@"UHRENTABELLE"] objectForKey:@"UHR"] mutableCopy]];
}
else
{
sqlite3_finalize(compiledQuery);
}
}
}
else
{
NSLog(@"Virtual Table already exists!!");
sqlite3_finalize(compiledQuery);
}
}
}
else
{
NSLog(@"The following statement is not correct: %@", sqlQuery);
}
}
sqlite3_close(database);
当通过xcode或ad-hoc版本运行时,方法fillSQLiteDataBaseTable
也会正常执行。唯一不同的是,对于ad-hoc版本,虚拟表的创建失败,而应用程序没有告诉我。应用程序只是继续,好像什么也没发生,但是当我查看sql文件后,从ad-hoc版本运行时没有虚拟表。虚拟表仅在从xCode运行时存在。
答案 0 :(得分:2)
嗯..如果该文件在您的资源包中,请不要写入文件..您应该先在应用程序的文档目录中复制一个空白数据库..然后您应该写入该文件.. apple sdk不会如果您签署了应用程序,则允许更改nsbundle中的任何内容..
以下是如何在文档目录中获取数据库的路径 -
NSString *documentsDir = [CommonFunctions documentsDirectory];
databasePath = [[documentsDir stringByAppendingPathComponent:@"yourdatabase.sqlite"] retain];
[self checkAndCreateDatabase];
获取此路径后,您应检查数据库是否已存在(然后确定..)如果没有,则使用以下函数将空白数据库从nsbundle复制到文档目录 -
//check if database exists else copy
-(void) checkAndCreateDatabase
{
// Check if the SQL database has already been saved to the users phone, if not then copy it over
BOOL success;
// Create a FileManager object, we will use this to check the status
// of the database and to copy it over if required
NSFileManager *fileManager = [NSFileManager defaultManager];
// Check if the database has already been created in the users filesystem
success = [fileManager fileExistsAtPath:databasePath];
// If the database already exists then return without doing anything
if(success) return;
// If not then proceed to copy the database from the application to the users filesystem
// Get the path to the database in the application package
NSString *databasePathFromApp = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"yourdatabase.sqlite"];
// Copy the database from the package to the users filesystem
[fileManager copyItemAtPath:databasePathFromApp toPath:databasePath error:nil];
}
如果您需要更多帮助,请发表评论。
答案 1 :(得分:0)
我忘了将以下行添加到我的sqlite.c文件的头部
#define SQLITE_ENABLE_FTS3
所以基本上是问题,当我从xcode运行我的版本时。我使用了我的捆绑包中的sqlite版本,由于某种原因我似乎不支持fts3而不需要使用该定义启用它。
我的iPad上的sqlite版本虽然不支持fts。 所以这可能是我的sqlite表现得如此奇怪的原因。
反正。现在它运行得非常顺利。