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

  • Home
  • SEARCH
  • 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 7713219
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T01:49:11+00:00 2026-06-01T01:49:11+00:00

I have just started reading about ORMLite since I am interested in using it

  • 0

I have just started reading about ORMLite since I am interested in using it in an Android application.

I would like to have a feeling of how object relations are/should be persisted with this framework.

For example, if I have these classes:

@DatabaseTable(tableName = "bill_items")
class BillItem{...}

@DatabaseTable(tableName = "bills")
class Bill {
  @DatabaseField String x;

  List<BillItem> billItems = new ArrayList<BillItem>;

  public void setItems(List<BillItem> billItems) {
    this.billItems = billItems;
  }
}

As far as I understand the recommended way to update a Bill object would be with something similar to:

Dao<Bill, String> billDao = DaoManager.createDao(connectionSource, Bill.class);
Bill bill = billDao.queryForId(...);

List<BillItem> billItems = ...; //some new list of items
bill.setX("some new value for X");
bill.setItems(billItems);

//saving explicitly the billItems before saving the bill. Is this correct ?
Dao<BillItem, String> billItemDao = DaoManager.createDao(connectionSource, BillItem.class);
for(BillItem billItem : billItems)
  billItemDao.update(billItem);

billDao.update(bill);

Is this the recommended way to update an object which relations have changed ? (specifically relations with a set of persistent objects, as in the code above).
Somehow I had the impression that it should be a better way to do this.

Also, if I want to use this framework, am I suppose to put in my model classes both domain attributes and persistency related attributes (e.g., foreign and primary keys ?). Wondering if there is a way to avoid this mixing of concerns.

Thanks for any help.

  • 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-01T01:49:12+00:00Added an answer on June 1, 2026 at 1:49 am

    Your code is basically correct although there are some things you can do to improve it.

    1. You should use the @ForeignCollectionField annotation to mark the billItems field. This will load the collection when you query for a Bill. See the docs on foreign collections.

      @ForeignCollectionField
      ForeignCollection<BillItem> billItems;
      
    2. Instead of doing the updates by hand each time, you can create your own Dao class for Bill that overrides the update update() method and updates the inner objects on its own.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have just started reading about threading in C, using pthreads. I know that
I've only just really started android developing and have been reading about services here
We have a bunch of data on S3 (images) but just started reading about
I have just started using Boost 1.36. These libraries would be very useful in
I've just started reading C and have a question about a macro. How can
I have just started reading about neural networks and I have a basic question.
I have just started reading Modern C++ Design Generic programming and Design Patterns Applied
I just have started to learn Haskell and combine reading books and tutorials with
Have just started using Google Chrome , and noticed in parts of our site,
Have just started using Visual Studio Professional's built-in unit testing features, which as I

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.