2012-06-05 51 views
4

我正在尝试将图像保存到Sqlite中,然后将图像加载到UIImageView中。但它没有得到工作。我不会发生什么错误。这是我正在使用的代码。任何人都可以帮助我解决这个问题。保存和检索iOS和SQLite中的图像

- (void)saveImage { 
    sqlite3_stmt *compiledStmt; 
    if(sqlite3_open([dbPath UTF8String], &db)==SQLITE_OK){ 
     const char *insertSQL="insert into Image(Image)values(?)"; 
     if(sqlite3_prepare_v2(db,insertSQL, -1, &compiledStmt, NULL) == SQLITE_OK){ 
      UIImage *image = [UIImage imageNamed:@"farmhouse.png"]; 
      NSData *imageData=UIImagePNGRepresentation(image); 
      sqlite3_bind_blob(compiledStmt, 1, [imageData bytes], [imageData length], NULL); 

      sqlite3_step(compiledStmt); 

      char *errMsg; 
      sqlite3_exec(db, insertSQL, NULL,compiledStmt,&errMsg); 

     } 
    } 
} 

- (void)showImage { 
    sqlite3_stmt *compiledStmt; 
    if(sqlite3_open([dbPath UTF8String], &db)==SQLITE_OK){ 
     const char *insertSQL = "Select Image from Image Where Sl.No = ?"; 
     sqlite3_prepare_v2(db,insertSQL, -1, &compiledStmt, NULL); 
     if(sqlite3_prepare_v2(db,insertSQL, -1, &compiledStmt, NULL) == SQLITE_OK){ 
      sqlite3_bind_int(compiledStmt, 1, 1); 
      if(SQLITE_DONE != sqlite3_step(compiledStmt)) {     
       NSData *data = [[NSData alloc] initWithBytes:sqlite3_column_blob(compiledStmt, 1) length:sqlite3_column_bytes(compiledStmt, 1)]; 

       if(data == nil) 
        NSLog(@"No image found."); 
       else 
        imgView.image = [UIImage imageWithData:data]; 


      } 
     } 
    } 
} 

任何人都可以用上面的代码指出问题。

在此先感谢

+0

你为什么不使用文件系统呢? – Jake

+0

offtopic:对于未来的项目,你应该使用FMDatabse:https://github.com/ccgus/fmdb – CarlJ

回答

9
- (void)saveImage 
{ 
    sqlite3_stmt *compiledStmt; 
    sqlite3 *db; 
    if(sqlite3_open([dbPath UTF8String], &db)==SQLITE_OK){ 
    NSString *[email protected]"insert into Image(image) VALUES(?)"; 
    if(sqlite3_prepare_v2(db,[insertSQL cStringUsingEncoding:NSUTF8StringEncoding], -1, &compiledStmt, NULL) == SQLITE_OK){ 
    UIImage *image = [UIImage imageNamed:@"vegextra.png"]; 
    NSData *imageData=UIImagePNGRepresentation(image); 

    sqlite3_bind_blob(compiledStmt, 1, [imageData bytes], [imageData length], SQLITE_TRANSIENT); 

    if(sqlite3_step(compiledStmt) != SQLITE_DONE) { 
     NSLog(@"Error: %s", sqlite3_errmsg(db)); 
    } else { 
     NSLog(@"Insert into row id = %lld", (sqlite3_last_insert_rowid(db))); 
    } 

sqlite3_finalize(compiledStmt); 
    } 
} 
sqlite3_close(db); 
} 

- (void)showImage 
{ 
    sqlite3_stmt *compiledStmt; 
    sqlite3 *db; 
    int i = 1; 
    if(sqlite3_open([dbPath UTF8String], &db)==SQLITE_OK){ 
    NSString *insertSQL = [NSString stringWithFormat:@"Select image from Image Where Id = %d",i]; 
    if(sqlite3_prepare_v2(db,[insertSQL cStringUsingEncoding:NSUTF8StringEncoding], -1, &compiledStmt, NULL) == SQLITE_OK) { 
    while(sqlite3_step(compiledStmt) == SQLITE_ROW) { 

    int length = sqlite3_column_bytes(compiledStmt, 0); 
    NSData *imageData = [NSData dataWithBytes:sqlite3_column_blob(compiledStmt, 0) length:length]; 

    NSLog(@"Length : %d", [imageData length]); 

    if(imageData == nil) 
    NSLog(@"No image found."); 
    else 
    imgView.image = [UIImage imageWithData:imageData]; 
    } 
} 
sqlite3_finalize(compiledStmt); 
} 
sqlite3_close(db); 
} 
+0

我改变了代码,如你所说,仍然无法正常工作。在sqlite中,图像列包含数据为“[BLOB]”。我不确定发生了什么。 –

+0

嗨Hector,我用你的代码替换了saveImage方法。但我收到以下错误:“错误:Image.Image可能不是NULL”。但我试图将farmhouse.png的UIImage对象分配给UIImageView。有效。那为什么NULL错误越来越多。 –

+0

我该如何做PDF ...?我在本地有我的PDF .. –

相关问题