0
votes
3answers
44 views

How to use ORMLite with the native Android driver?

I want use ORM with ORMLite. But, the example show how use JDBC driver, I want use SQLite native Android driver, how I can do with this ? It's possible ? Can you show me just an example how get ...
0
votes
1answer
41 views

how to store a collection of primitive type (String) into database

I'm trying to map my classes to the SQLite database using ORMLite and i have trouble to store a collection of String i have this error : java.lang.IllegalArgumentException: No fields have a ...
0
votes
1answer
94 views

Android Ormlite mapping to Sqlite

I can't find the Ormlite DataType mapping for Android to Sqlite. I've found OrmLite SQL Data Types but the Sqlite column is blank. Anyone know were I can find them? I need them to update my ...
0
votes
1answer
65 views

ORMLite how to make this query?

I want to make this query: SELECT * FROM table_one INNER JOIN table_two ON table_one.column_foreign_id = table_two.id WHERE table_two.column_one <= table_two.column_two AND ...
0
votes
1answer
319 views

OrmLite join() on QueryBuilder replaces previous join()?

I'm using ormlite in adroid. Library seems to be very helpful, but I have a problem with QueryBuilder. I'll try to explain that on some abstract example. Let's say we have 4 tables: Projects, ...
0
votes
0answers
185 views

Using GROUP BY, HAVING and ORDER BY in Ormlite returns wrong result

The following code gives an error List<List<Consumption>> children = new ArrayList<List<Consumption>>(); try { for(DrinkType drinkType : groups){ ...
0
votes
1answer
95 views

New table for Primary/Foreign key Relationship in ORMLite

I have a User table with the following details in my android DB username, password, email, mobile, I have another table named Service with the following detail in my android DB service name, service ...
-1
votes
2answers
83 views

Android DatabaseHelper using orm

Does anyone know how to implement a DatabaseHelper on Android to usu ORM?