android中关于Sqlite的问题

1.不要在UI线程里调用getReadableDatabase ()或者getWritableDatabase ()方法

    参见androidAPI文档如下:

    Create a helper object to create, open, and/or manage a database. This method always returns very quickly. The database is not actually created or opened until one of getWritableDatabase() or getReadableDatabase() is called.

    Like getWritableDatabase(), this method may take a long time to return, so you should not call it from the application main thread, including from ContentProvider.onCreate().

     Database upgrade may take a long time, you should not call this method from the application main thread, including from ContentProvider.onCreate().

猜你喜欢

转载自xhmj12.iteye.com/blog/1998254