ORMLite is a Java open source software framework that provides lightweight object relational mapping (ORM) between Java classes and SQL databases. It supports JDBC databases as well as Android mobile platform.
0
votes
1answer
5 views
ORMLite and Foreign Keys Constraints in PostgreSQL
I am using TableUtils to generate my tables with ORMLite. Everything is working just fine if I use ORMLite for all operations. However, when I try to perform a join query using something else, it ...
0
votes
0answers
14 views
ORMLITE order by a column from another table
I would like to get information by a sql like this but in "ORMLITE"
SELECT * FROM tableA a INNER JOIN tableB b on a.fieldA = b.fieldB
ORDER BY a.fieldZ, b,fieldX;
I try this in ORMLITE:
...
0
votes
1answer
12 views
column name is not upper case when using ORMLite with Oracle
I'm using the latest ORMLite to query against Oracle database. I create all DAOs in Spring and have @DatabaseField(id = true) annotation for my key field. In Spring configuration my JDBC url is like ...
1
vote
0answers
19 views
Ormlite with android and desktop sqlite access
I'm trying to set up a design for my android and desktop project which allows me to access the sqlite database with ORMLite on my android server and on my desktop server as well.
Sounds a bit strange ...
0
votes
1answer
16 views
Update vs Refresh in ORMLite
Dao<T,ID> Interface provides many DAO methods such as update,create ,...etc
I read that Update method
will not save changes made to foreign objects or to foreign
collections.
Did ...
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
0answers
36 views
Android - SQLiteException: unknown error (code 0): Native could not create new byte[]
I'm getting this error when trying to query up to 30 objects, each object has field byte[] which weights 100x100 ARGB_8888 bitmap data ~ 39kb
I'm using OrmLite 4.45 version.
Device - Samsung GT ...
1
vote
1answer
41 views
Caching nested objects in Robospice with ORMLite
Is it possible to cache nested (2-3 level of nesting) objects (foreign fields) via Robospice/ORMlite?
https://groups.google.com/forum/#!msg/robospice/VGLB3-vM3Ug/-piOac212HYJ - there you can read ...
0
votes
0answers
27 views
Ormlite does not save foreignAutoCreate fields when the model is saved for the second time
I'm using OrmLite for my android project to save and retrieve my models to/from the database. One of my models is organisation. Organisation has one foreign field to another model, homeadres.
My ...
1
vote
0answers
17 views
Android SQLite database schema from xml file
Is it possible to create SQLite database schema using XML db definition. Does OrmLite provide such functionality?
1
vote
1answer
19 views
Speed issues using H2 database with OrmLite on Android
i am coding an android app which needs a database. I won't use sqlite because i want a pure java core without any dependencies to androids library. To simplify the database access i'm using ORMLite.
...
0
votes
1answer
20 views
Persist Text SQL Type via ORMLite (not LONGVARCHAR)
Using DataType.LONG_STRING attribute value Persisted as SQL type LONGVARCHAR which handles longer strings.
However, i want to map the field to SQL type TEXT .
@DatabaseField(dataType = ...
0
votes
2answers
80 views
ORMLite performance: ArrayAdapter vs CursorAdapter vs a custom adapter
I have relatively small H2 database. I am expecting no more than 100 entries and even that feel highly over the top.
I have a list view with some controls and use an ArrayAdapter with a call to ...
-2
votes
1answer
31 views
How do I achieve this SQL with ORMLite? [closed]
SELECT USER.USERNAME,POST.CONTENT FROM USER,POST WHERE USER.USERNAME='a'
AND POST.USER_ID = USER.ID
How to using ORMLite's QueryBuilder?? Thanks.
0
votes
0answers
17 views
ORMLite populate foreign object of a foreign object
Lets use the ORMLite Account and Orders foreign collection example as a basis with an Item extension to describe the problem. The relationships between the objects are following:
Account one-to-many ...
0
votes
1answer
32 views
BaseDaoImpl has an invisible method
Hi i am following this tutorial about ORMLite,
but when I get to this line of code :
userDao = BaseDaoImpl.createDao(getConnectionSource(), User.class);
I get the folloing error :
The ...
-4
votes
0answers
44 views
Android - Upgrade a Database table to add a new column using ormlite [closed]
i want to add a column after upgarde the app to the existing table in ormlite datase with out any loss of data. presenlty after updagrade the app i am dropping all tables and creating tables again. ...
0
votes
2answers
34 views
CAST clause in ORMLite for Android
I used ORMLite for Android in my application. How can I make such a query?
SELECT * FROM tableName WHERE CAST(ColumnName AS INTEGER) <= 100;
I tried this, but it isn't work:
...
0
votes
1answer
46 views
JdbcConnectionSource not found using ORMLite compiled in java project in Eclipse ide
I'm developing an application with eclipse and using an object related mapping (ORMLite) to access my mysql server. The datalayer is another project compiled in java and bound as a reference to my ...
0
votes
1answer
33 views
QueryBuider get parameters for Dao.queryRaw
I'm using QueryBuider to create raw query, but I need to fill parameters to raw query manually.
Properties 'from' and 'to' are filled two times. One in 'where' section of QueryBuider, and one in ...
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
0answers
64 views
Using limit () and offset () in QueryBuilder (ANDROID , ORMLITE)
@SuppressWarnings("deprecation")
public List<Picture> returnLimitedList(int offset, int end) {
List<Picture> pictureList = new ArrayList<Picture>();
int startRow = offset;
...
0
votes
1answer
86 views
Android - Random NullPointerException crash reports
Sometimes I'm receiving crash reports from google caused by random NullPointerExceptions (see above). I tried to reproduce those errors but I'm not able to catch them.
Examples of NPE I get :
Caused ...
0
votes
1answer
29 views
Query object has foreign collections with conditions
I'm learning to use your ORMLite framework for Android.
But I faced a problem that I tried many ways to resolve but failed.
For example.
I have 2 database classes:
@DatabaseTable(tableName = ...
0
votes
1answer
58 views
Query for last id in table
I need to get the id of the last record in my table. I have tried:
Dao<ParticipantModel,Integer> participantDao = getHelper().getParticipantsDao();
participant = ...
0
votes
2answers
60 views
Using JodaTime (DateTime, Duration) with ORMLite on Android
I am looking for a way to hold a DateTime object and a Duration as part of my value object.
Here is my value object:
@DatabaseTable(tableName = DrivingRecord.TableName)
public class DrivingRecord {
...
1
vote
1answer
193 views
RoboSpice persist JSON array with OrmLite
I'm using RoboSpice with Spring for Android and would like to persist a JSON array of objects with OrmLite. GSON is used for the JSON marshalling. With the default caching everything works as ...
3
votes
2answers
231 views
Robospice storing object that extends ArrayList in database via Ormlite
Background
I have been trying to modify the Robospice Ormlite example code, which I have been successful to run. The only changes I have made is that I have a JSON response that contains an array of ...
0
votes
0answers
54 views
Ormlite using Android Location
Scenario:
We have about well over 10k+ rows of data with spatial attributes of latitudes and longitudes. We would like to sort and fetch the object(around 300) closest to my current location.
What ...
0
votes
1answer
41 views
Custom ORMLite Persister to Return Wrapper Objects
I am writing an application which uses ORMLite to connect to a back-end database. Since the application will be run over VPN I am trying to minimize database calls.
In order to minimize database ...
0
votes
1answer
26 views
Is there any way to disable ORMLite's check that a field declared with DataType.SERIALIZABLE implements Serializable?
Question title just about says it all. I have a field declared like this:
@DatabaseField(canBeNull=false,dataType=DataType.SERIALIZABLE)
List<ScheduleTriggerPredicate> predicates = ...
0
votes
1answer
81 views
ORMLITE ORDER_BY with multiple culumns
I am using ormlite in my recent android project. I want to order by on a query on multiple columns in a table(say two columns). How can i achieve that?? here is the code fo single order by...
...
1
vote
1answer
37 views
How to Query a Read-Only Field with ORMLite
I am trying ORMLite as an ORM for a project I am developing. I am mapping a java class to a table that has some auditing fields (ie. updatedby, updatedtime, etc.). The auditing fields are maintained ...
0
votes
2answers
53 views
ORMLite union operator
I have three tables that I have to present in one Android ListView. To get the data I use the SQL UNION operator to "merge" all three tables together, so that in my ViewBinder I can make each ...
1
vote
2answers
42 views
Need to roll the database back to previous state
Here is my model classes that are persisted in sqlite db using ORMLITE.
public class Site{
...
...
Collection<Visit> visits;
...
0
votes
1answer
40 views
Using ORMLite with MySQL and MyISAM tables
ORMLite's MySQL driver defaults to using InnoDB tables. The documentation describes how to configure it to use other table types, but does not describe the consequences of doing so. Having had bad ...
0
votes
2answers
49 views
Query for id needs integer parameter
In the documentation the following is mentioned :
http://ormlite.com/javadoc/ormlite-core/doc-files/ormlite_2.html#Persisted-Types
Account account = accountDao.queryForId("John Smith");
if (account ...
0
votes
0answers
24 views
How to get the id of the foreign object?
I have a List class which has many ListItems. How could I write a method into the ListItem class which could return the id of the List it is belonging to?
I haven't found any other solution but ...
0
votes
1answer
80 views
OrmLiteSqliteOpenHelper onDowngrade
I'm using ormlite for android and I have a database table class that extends OrmLiteSqliteOpenHelper. I've had some reports in google play that the application had a force close caused by:
...
2
votes
1answer
66 views
How do I correctly define the SelectArg in a raw query?
I need to implement a CASE in the WHERE condition of my query.
I wrote the following code:
QueryBuilder<Cars, String> carsQB = carsDao.queryBuilder();
carsQB.selectColumns("id");
...
0
votes
1answer
99 views
ORMLite: How to join two tables without foreign key
I have to join two independent tables in sqlite. They don't have any foreign key relationship.
Example:
Table A has a field name
Table B has a field primaryName
I want to do something like
...
0
votes
2answers
97 views
Ormlite: FieldType is a primitive type but marked as foreign
I'd like to know, what does the error from title mean - it occurs very often in my project but it makes absolutely no sens (obviously, related classes are nerver primitive types).
It appears to me ...
0
votes
1answer
20 views
“Or” statement - ORMLite
I'm tring to do this query with ORMLite but I just can't use the or() statement properly.
SELECT DISTINCT x FROM x x INNER JOIN x.w w WHERE :date >= x.startDate
AND w.company.id = :companyId AND ...
0
votes
0answers
35 views
Cant write in a sqlite3 Database
I have a program that uses a sqlite3 database,i can read but not write it,this problem appears only in my computer. In the rest of computers (Same OS) it works ok.
I have ubuntu 11.10 64 bits and ...
0
votes
1answer
135 views
ORMLite the bind value at index 1 is null
I am trying to add objects to the ForeignCollection in class LyricsInfo, but unfortunately I get the error: "the bind value at index 1 is null". Any ideas? I've already read that the selectionArg ...
0
votes
0answers
94 views
How to use Ormlite with LoaderManager
I am using successfully OrmLite in my Android apps.
I am moving my apps to the new CursorLoader logic and I would like to know how to use Ormlite with a CursorLoader without to have a ContentProvider.
...
0
votes
1answer
89 views
Android ORMLite DatabaseConfigUtil
I'm using ORMLite on our Android app, and I've previously set up an ormlite_config.txt as described in the documentation
http://ormlite.com/javadoc/ormlite-core/doc-files/ormlite_4.html#SEC43
I've ...
0
votes
1answer
59 views
Ormlite; Why is there no foreignAutoDelete?
I'm using Ormlite for Android to convert an existing application from file to database storage of objects. I have a fairly complex object data structure which I need to get into the database and ...
0
votes
1answer
84 views
ORMLite and Oracle - case sensitive column names
I have just started using ORMLite and was using at home to experiment on MySQL. Now I have decided to try using it on Oracle, but have noticed an issue with case sensitivity of column names.
When ...
0
votes
1answer
56 views
ormlite - updating ormlite_config.txt after adding new table
I need to upgrade the schema of released application by adding new table. I'm using table config file (ormlite_config.txt).
Is there a way to update also the ormlite_config.txt file after adding new ...



