Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>This is more a ORM Lite question than a RoboSpice thing. </p> <p>Maybe you could "embed" the address data inside the club entitiy/table. </p> <p>This thread might be of interest : <a href="https://stackoverflow.com/questions/14649078/one-to-one-relationship-in-ormlite">one-to-one relationship in Ormlite</a></p> <p>The problem may come from here as stated in <a href="http://ormlite.com/javadoc/ormlite-core/doc-files/ormlite_2.html#Persisted-Types" rel="nofollow noreferrer">ormlite docs</a> : </p> <blockquote> <p>foreignAutoRefresh</p> <p>Set this to be true (default false) to have a foreign field automagically refreshed when an object is queried. The default is to just have the ID field in the object retrieved and for the caller to call refresh on the correct DAO. If this is set to true then, when the object is queried, a separate database call will be made to load of the fields of the foreign object via an internal DAO. NOTE: this will not automagically create the foreign object if you create an object that has this field set.</p> <p>NOTE: This will create another DAO object internally so low memory devices may want to call refresh by hand.</p> <p>NOTE: To protect against recursion, there are a couple of places were auto-refreshing has been limited. If you are auto-refreshing a class that itself has field with foreignAutoRefresh set to true or if you are auto-refreshing a class with a foreign collection, in both cases the resulting field will be set to null and not auto-refreshed. You can always call refresh on the field directly if you need it.</p> </blockquote>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload