Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9171977
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T16:14:14+00:00 2026-06-17T16:14:14+00:00

If I understand correctly, when working with DB, I have to do as follows

  • 0

If I understand correctly, when working with DB, I have to do as follows

DaoMaster.OpenHelper helper = new DaoMaster.OpenHelper(this, "test-db", null) {

        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        }
    };
    SQLiteDatabase db = helper.getWritableDatabase();
    DaoMaster daoMaster = new DaoMaster(db);
    daoSession = daoMaster.newSession();

But if I try to do this in classes that aren’t extending activity or service, I simply couln’t pass their context.

What is right approach to open my DB? Where should it be done?

If you can provide some tutorial links besides official greendao (I couldn’t find the answer there), it would be great.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T16:14:15+00:00Added an answer on June 17, 2026 at 4:14 pm

    provide custom application object and use its context (so Application Context).

    in your AndroidManifest file, provide a class that extends Application.

    <application android:label="@string/app_name"
                 android:name=".MyApp"
                 >
    

    MyApp class looks like this:

    public class MyApp extends Application {
    
        private static MyApp instance;
        public MyApp() {
            instance = this;
        }
    
        public static MyApp getInstance() {
            return instance;
        }
    ....
    

    so now whenever you need context in your app, you can call MyApp.getInstance. As long as you call it after MyApp’s onCreate is called, you will be safe. Keep in mind that instance is your application context so it will be alive as long as your app is alive. (e.g. no danger of leaking)

    new DaoMaster.OpenHelper(MyApp.getInstance(), "test-db", null)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I understand it correctly this means extern void foo(); that the function foo
Why does this not work? Do I not understand delegate covariance correctly? public delegate
In my view the call $this->translate('test') is not working. In the bootstrap I have
This is just a quick question to understand correctly what happens when you create
If I understand this correctly, the program counter points to the address of the
Been trying my best to understand this correctly. What is the difference between an
I am currently working on a project. In this project I have set of
I have been trying to get my geocoder working this morning for the following
I'm working on codecademy.com JavaScript tutorial. This lesson on objects. I have a feeling
I have spent days working on this and really feel dumb. I have been

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.