您好我的计算机中创建了一个Sqlite3数据库,我想在我的Iphone中读取该数据库。 以下代码适用于Iphone模拟器,但在真实设备中不起作用,它似乎是与设备架构相关的一些问题(MacBook与Iphone)。 问题是当我读取数据并尝试将其转换为UIImage时,数据似乎不正确,因为结果是空白的UIImageView而不是Image的表示。在模拟器中工作不错。
-(IBAction) findPhoto{
databaseName = @"memoryDB.sqlite";
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDir = [documentPaths objectAtIndex:0];
databasePath = [documentsDir stringByAppendingPathComponent:databaseName];
int res = 0;
res = sqlite3_open_v2([databasePath UTF8String], &database, SQLITE_OPEN_READONLY, nil);
if(res == SQLITE_OK) {
// Setup the SQL Statement and compile it for faster access
NSString *querySQL = [NSString stringWithString:@"SELECT * FROM Fotos"];
const char *sqlStatement = [querySQL UTF8String];
sqlite3_stmt *compiledStatement;
if((res = sqlite3_prepare_v2(database, sqlStatement, -1, &compiledStatement, NULL)) == SQLITE_OK) {
// Loop through the results and add them to the feeds array
while(sqlite3_step(compiledStatement) == SQLITE_ROW) {
// Read the data from the result row
UIImage *image;
NSData *data = [[NSData alloc] initWithBytes:sqlite3_column_blob(compiledStatement, 1) length:sqlite3_column_bytes(compiledStatement, 1)];
if(data == nil)
NSLog(@"No image found.");
else
image = [[UIImage alloc] initWithData:data];
//
NSLog(@"width: %f,height: %f",image.size.width, image.size.height);
UIImageView *imgView = [[UIImageView alloc] initWithImage:image];
[self.view addSubview:imgView];
}
}
// Release the compiled statement from memory
sqlite3_finalize(compiledStatement);
sqlite3_close(database);
}
}
我在项目中包含数据库(DB),数据库是在我的MacBook中创建的。那是问题吗?可以将数据转换为正确的格式吗?
答案 0 :(得分:-1)
这不是正确的方法。将图像存储在数据库中。
您应该将其保存到NSDocumentDirectory。
,只需将图片名称存储到db。
表中因此很容易从表中获取图像名称的名称并从documentdirectory获取图像。它比从db获取图像要快得多。