Coder Social home page Coder Social logo

Comments (8)

anidotnet avatar anidotnet commented on May 26, 2024

Don't create the db file for yourself

if (!dbFile.exists()) {
    dbFile.createNewFile();
}

Instead, try to initialise it as follows:

Nitrite db = Nitrite.builder()
        .filePath(Environment.getExternalStorageDirectory().getPath() + "/" + C.DB.DATABASE_FOLDER_NAME + "/" + C.DB.DATABASE_FILE_NAME)
        .openOrCreate();

The openOrCreate() call will create the db file if it does not exists. But you need to create any parent dir if necessary.

from nitrite-java.

boris-dev avatar boris-dev commented on May 26, 2024

Thank you, but it doesn't work

from nitrite-java.

anidotnet avatar anidotnet commented on May 26, 2024

Are you getting the same error after the modification? I tried with the sample project on Nougat and it is running fine without any complain.

from nitrite-java.

anidotnet avatar anidotnet commented on May 26, 2024

Closing the issue due to inactivity. In case you are able to reproduce the issue after the suggested modification please feel free to reopen the issue.

from nitrite-java.

 avatar commented on May 26, 2024

hi Anidotnet,

I got some exception during the data search. Later I build the new war file and still I get the same error.
Please advice.

Nitrite nitDB = Nitrite.builder().compressed().filePath(dbFilePath).openOrCreate();
Same error "NO2.2001: database is already opened in other process
Thank you.

from nitrite-java.

anidotnet avatar anidotnet commented on May 26, 2024

You will get this error when you are trying to create a nitrite instance while another nitrite instance has already opened the database file and acquire an exclusive lock on it. You need to make sure you are not holding any other nitrite instance in some other activities which are not closed yet.

For your reference you can see the example android project and try to understand what I meant here. You can either share one nitrite instance between your activities or you can open the database in onStart() and close the database in onStop() method of your activity, so that you can open a nitrite instance in each activity without this error.

from nitrite-java.

 avatar commented on May 26, 2024

thank you. can you share the example android project link.

from nitrite-java.

anidotnet avatar anidotnet commented on May 26, 2024

Here is the link - https://github.com/dizitart/nitrite-database/tree/master/example-android-app

from nitrite-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.