unable to open database

前端 未结 3 1346
一整个雨季
一整个雨季 2020-12-12 03:46

I am using below code for inserting data in the database. and i am inserting aprox 15000 records but after 245 records it throws the error \"Unable to open database\"

相关标签:
3条回答
  • 2020-12-12 04:11

    Firstly, think about Mark's answer, you'll get better performance if you open the database once and close it once.

    Anyway, that was a suggestion for a design improvement. What is actually wrong in your code is the finally block:

     @finally 
     {
      sqlite3_close(PatientDatabase);  // will fail!
      sqlite3_finalize(dataRows);
      PatientDatabase=nil;
     }
    

    Here is the relevant line from the sqlite3_close() docs.

    Applications must finalize all prepared statements and close all BLOB handles associated with the sqlite3 object prior to attempting to close the object. If sqlite3_close() is called on a database connection that still has outstanding prepared statements or BLOB handles, then it returns SQLITE_BUSY.

    You need to run the finalize before closing the database. As things stand, the close call fails and you end up with 245 open database handles.

    So, reverse the order of the two statements and check your return codes for failure.

    By the way, NSAssert is not an appropriate way to report errors. Throw an exception or return an error, or just log it. NSAssert is designed to catch programming errors. It won't even be compiled into your release code.

    0 讨论(0)
  • 2020-12-12 04:15

    You are opening the database on each call it would take less resource to open it once then add all the rows before closing it. In theory what you are doing should work but it is not a way I would even start using.

    0 讨论(0)
  • 2020-12-12 04:35

    Sqlite has much better performance "in transation" on inserts without transaction. I particularly, massive use transaction processes, or failure comes randomly at some point with error "unable to open database file"

    0 讨论(0)
提交回复
热议问题