Top "Foreign-collection" questions

A collection of foreign keys associated with an entity used in Object Relational Mapping systems.

PostgreSQL array of elements that each are a foreign key

I am attempting to create a DB for my app and one thing I'd like to find the best way …

postgresql foreign-keys foreign-collection
Collections in ORMLite

Hello I want persist some collections data with ORMlite in my android app. For example : class Person { @DatabaseField(generatedId=true) …

android orm collections ormlite foreign-collection
Deleting using ormlite on android?

I have a Client bean , @DatabaseField(columnName = "client_id",generatedId = true,useGetSet = true) private Integer clientId; @DatabaseField(columnName = "client_nom",…

android ormlite foreign-collection
Convert ForeignCollection to ArrayList - ORMLite, Gson and Android

I apologize if I'm not super clear with my explanation but I'll add to and edit this question for clarity …

android arraylist gson ormlite foreign-collection
ORMLite many to many relation Android

I have two classes : UniteStratigraphique.java : @DatabaseTable(tableName = "unitestratigraphique") public class UniteStratigraphique { public final static String ID_FIELD_NAME = "id"; @…

android many-to-many ormlite foreign-collection
Create table with Foreign Collection Field

I have this abstract class: DomainItem abstract public class DomainItem { @DatabaseField(generatedId = true) protected long id; @ForeignCollectionField(eager = false) protected …

java ormlite foreign-collection