当前位置: 代码迷 >> SQL >> android中关于Sqlite的有关问题
  详细解决方案

android中关于Sqlite的有关问题

热度:66   发布时间:2016-05-05 11:51:57.0
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().

?

  相关解决方案