2

我的应用程序从 fmdatabase 读取一些数据并使用核心绘图库以图形方式显示它。我的应用程序第一次读取数据库时一切都很好,但问题是在将新数据插入数据库后,我执行了一个 sql 选择语句,它不会读取插入的新行。我不知道可能是什么问题,因为在 sqlite studio 中,我在我的应用程序执行插入后执行相同的选择语句并获取数据。

我已经读过我必须将资源数据库复制到另一个文件夹以便我可以读/写它,但也不起作用。

你有什么主意吗?

我的打开代码是这样的。

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,          NSUserDomainMask, YES);
NSString *docsPath = [paths objectAtIndex:0];
NSString *writablePath = [docsPath stringByAppendingPathComponent:@"DatabaseName.sqlite"];
//this is the copy db from the resource database
FMDatabase *db = [FMDatabase databaseWithPath:writablePath]; 

这是执行插入和删除的代码。

 if([db open]){
    for (int i = 0; i < [updatedData count]; i++) {
        z_ent = [((NSNumber *)([[updatedData objectAtIndex:i] valueForKey:@"ent"])) intValue];
        z_opt = [((NSNumber *)[[updatedData objectAtIndex:i] valueForKey:@"opt"]) intValue];
        zaniocorte = [((NSNumber *)[[updatedData objectAtIndex:i] valueForKey:@"anioCorte"]) intValue];
        zmescorte = [((NSNumber *)[[updatedData objectAtIndex:i] valueForKey:@"mesCorte"]) intValue];
        zestatus = [((NSNumber *)[[updatedData objectAtIndex:i] valueForKey:@"estatus"]) intValue];
        zidcontraparte = [((NSNumber *)[[updatedData objectAtIndex:i] valueForKey:@"idContraparte"]) intValue];

        zconsumomesa = [((NSNumber *)[[updatedData objectAtIndex:i] valueForKey:@"consumo"]) doubleValue];
        zconsumototal = [((NSNumber *)[[updatedData objectAtIndex:i] valueForKey:@"consumoTotal"]) doubleValue];
        zlinea = [((NSNumber *)[[updatedData objectAtIndex:i] valueForKey:@"linea"]) doubleValue];
        zlineadisponible = [((NSNumber *)[[updatedData objectAtIndex:i] valueForKey:@"lineaDisponible"]) doubleValue];

        zcontraparte = ((NSString *)[[updatedData objectAtIndex:i] valueForKey:@"contraparte"]);
        zinstitucion = ((NSString *)[[updatedData objectAtIndex:i] valueForKey:@"institucion"]);
        zmesa = ((NSString *)[[updatedData objectAtIndex:i] valueForKey:@"mesa"]);
        ztiporiesgo = ((NSString *)[[updatedData objectAtIndex:i] valueForKey:@"tipoRiesgo"]);

        queryUpdateInsert = [NSString stringWithFormat:@"INSERT INTO ZTESORERIACONSOLIDADO
 (Z_ENT, Z_OPT, ZANIOCORTE, ZMESCORTE, ZCONSUMOMESA, ZCONSUMOTOTAL, ZESTATUS, ZLINEA, ZLINEADISPONIBLE, ZCONTRAPARTE, ZIDCONTRAPARTE, ZINSTITUCION, ZMESA, ZTIPORIESGO) VALUES (%d, %d, %d, %d, %f, %f, %f, %f, %f, '%@', %d, '%@', '%@', '%@');",z_ent, z_opt, zaniocorte, zmescorte, zconsumomesa, zconsumototal, zestatus, zlinea, zlineadisponible, zcontraparte, zidcontraparte, zinstitucion, zmesa, ztiporiesgo];

        queryUpdateDelete = [NSString stringWithFormat:@"DELETE FROM ZTESORERIACONSOLIDADO WHERE ZMESCORTE = %d AND ZANIOCORTE = %d", zmescorte, zaniocorte-1];

        del = [db executeUpdate:queryUpdateDelete];
        ins = [db executeUpdate:queryUpdateInsert];
    }
}
[db close];
4

1 回答 1

0

基于您现在提供的代码的一些观察。

  1. 检查返回值。

    您应该检查delins返回值executeUpdate,如果其中任何一个是NO,您应该检查lastErrorMessage

    del = [db executeUpdate:queryUpdateDelete];
    if (!del)
        NSLog(@"%s: executeUpdate delete error: %@", __FUNCTION__, [db lastErrorMessage]);
    
    ins = [db executeUpdate:queryUpdateInsert];
    if (!ins)
        NSLog(@"%s: executeUpdate insert error: %@", __FUNCTION__, [db lastErrorMessage]);
    
  2. 不要使用stringWithFormat.

    你真的不应该使用stringWithFormat来构建 SQL,而是?在你的 sql 中使用占位符,然后将参数传递给executeUpdate

    queryUpdateInsert = @"INSERT INTO ZTESORERIACONSOLIDADO (Z_ENT, Z_OPT, ZANIOCORTE, ZMESCORTE, ZCONSUMOMESA, ZCONSUMOTOTAL, ZESTATUS, ZLINEA, ZLINEADISPONIBLE, ZCONTRAPARTE, ZIDCONTRAPARTE, ZINSTITUCION, ZMESA, ZTIPORIESGO) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);";
    
    queryUpdateDelete = @"DELETE FROM ZTESORERIACONSOLIDADO WHERE ZMESCORTE = ? AND ZANIOCORTE = ?";
    
    del = [db executeUpdate:queryUpdateDelete, @(zmescorte), @(zaniocorte-1)];
    if (!del)
        NSLog(@"%s: executeUpdate delete error: %@", __FUNCTION__, [db lastErrorMessage]);
    
    ins = [db executeUpdate:queryUpdateInsert, @(z_ent), @(z_opt), @(zaniocorte), @(zmescorte), @(zconsumomesa), @(zconsumototal), @(zestatus), @(zlinea), @(zlineadisponible), zcontraparte, @(zidcontraparte), zinstitucion, zmesa, ztiporiesgo];
    if (!ins)
        NSLog(@"%s: executeUpdate insert error: %@", __FUNCTION__, [db lastErrorMessage]);
    

    请注意将printf样式格式化程序替换为?SQL 占位符。

    另请注意,executeUpdate期望NSNumber对象而不是原始数字数据类型。因此,在我上面的示例中,您将值存储在NSNumberdouble变量中,我不得不使用它@()来获取NSNumber表示。更好的是,与其检索NSNumberfrom convertedData,将其转换为原始数据类型,例如NSIntegerordouble然后再转换回 a NSNumber,只需传递 from 返回的原始对象valueForKey并完全丢失@()。如果这样做,您显然必须更改变量的数据类型,但这是一种更合乎逻辑的方法。)

    不过,关键的关键信息是,您希望通过使用参数 toexecuteUpdate而不是stringWithFormat. (使用附加参数executeUpdate就像sqlite3_bind_xxx在 SQLite 库中使用调用一样。)

  3. 这是一个 CoreData 数据库吗?

    我是否从Z表名和列名中推断出这是一个 CoreData 数据库?如果是这样,除非您完全停用 CoreData,否则我不建议您通过 SQLite 直接与数据库交互(无论是通过 FMDB 还是sqlite3_xxx调用)。当然,如果您在尝试此 FMDB 代码时打开了 CoreData,您可能会遇到问题(当您查看 时会亮起lastErrorMessage)。

  4. 但是,如果使用 SQLite,请使用事务。

    如果您想改进您的算法(一旦您确定并修复了错误的来源),您可能希望将所有这些都包含在一个inTransaction调用中,因为如果您使用大量记录执行此操作,您可以获得显着的性能增益。

于 2013-07-11T17:44:05.217 回答