htbzwd 发表于 2016-12-1 07:22:39

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().
页: [1]
查看完整版本: android中关于Sqlite的问题