Tagged Questions

ORMLite was started with the goal of providing a simple yet powerful Java wrapper around the JDBC functions without the complexity of other frameworks such as Hibernate and iBATIS. ORMLite supports a number of JDBC databases including: MySQL, PostgreSQL, Microsoft SQL Server, H2, Derby, HSQLDB, and ...

learn more… | top users | synonyms

1
vote
2answers
20 views

ORMLite for Android doesn't autorefresh foreign object using foreignAutoRefresh

Here's my problem: I have different entities linked to others up to a nesting depth of 3. All my foreign fields in every object are annotated with @DatabaseField(foreign = true, foreignAutoRefresh = ...
-1
votes
0answers
33 views

Ormlite query using date

public GenericRawResults<Object[]> getCountByStatus(Date date,int status){ Log.info("CallDayPlanningDao",date.toString()); GenericRawResults<Object[]> rawResults=null; ...
1
vote
0answers
14 views

Insert data from one database to another database in ORMLite

I'm using ORMLite on my Android project. I want copy same data from one database to another database. It is possible on ORMLite? ORMLite can work with multiple databases. Any idea? Kind regards
0
votes
1answer
26 views

store and view image blob html.fromhtml android

I am trying to show a image saved as blob in my DB. I am using ORMLite and Android 1.6. I created a textView who show a 'html.FromHtml' Here is the code: //Save the image in DB. ... Bitmap ...
0
votes
1answer
27 views

if i change extends Activity to OrmLiteBaseActivity<Helper> i get an java.lang.NoClassDefFoundError

i begin to develop for android and use the "ormlite" ORM-mapper (SQLite). The Mapper has a OrmLiteBaseActivity Class, this extends from Activity. If i change "MainActivity extends Activity" to ...
0
votes
1answer
31 views

Android ormlite query sort by another table

I want to query my data from A and order-by a field from B, The field in B could be null. Any suggestions? Thanks.
0
votes
0answers
16 views

ORMLite fails with “Could not create object for class”

I have classA referencing to classB (@DatabaseField(canBeNull = false, foreign = true)). When I do the following: classADao.queryForAll(); my code throws SQLException: Could not create object for ...
0
votes
1answer
26 views

ORMLite reset all tables

I have an application that uses ORMLite. I need to create a function to reset the entire db (basically I need to delete all rows from every db, reset the autoincrement and reset indexes). I probably ...
2
votes
2answers
73 views

Why would “.contains” return false for objects pulled directly from a collection?

private Collection<Episode> episodes = new ArrayList<Episode>(); public void checkEpisodes(String string) { for(Episode episode : this.episodes){ System.out.println(string + ...
0
votes
1answer
20 views

How to use Dao.setAutoCommit()?

I'm parsing JSON from a server, using ORMLite to persist objects to the database as I read them out. The files could get very large, so my thought is to commit objects one at a time as they are read, ...
1
vote
2answers
63 views

Cancelling ORMLite Write in Background Thread Safely

I'm designing out a module in Android that does some processing and then writes to the database using ORMLite transactions. In particular, my background code will be something like: public class ...
0
votes
1answer
47 views

Problems iterating through Foreign Collections with ORMLite

Am having an issue trying to use Ormlite ForeignCollection with the following classes. I believe I have my Run & Waypoint classes correctly annotated. (Run has a collection of WayPoints). However ...
0
votes
1answer
56 views

Multiple primary keys - ORMlite

I created database, for my android app, witch has 16 tables. I want to use ORMlite mapping. The problem is that I didn't find examples where you have composite id(Multiple primary keys). For example I ...
0
votes
1answer
65 views

Using Ormlite in Conjunction with Android's Content Provider

I'm in the process of developing an Android application and I am conflicted about whether or not I should use Ormlite for updating and retrieving data in conjunction with Android Content Provider. The ...
1
vote
2answers
72 views

Best practise to use OrmLiteBaseListActivity [closed]

what is the best practise to use the OrmLiteBaseListActivity? Is there any way to keep the provided list view synced to the database? Or do I really always have to do this myself, using the add or ...
0
votes
0answers
105 views

Lucene and ORMLite on Android

I would like to know how to use ORMLite with Lucene on Android (any example). Now I use Hibernate Search with Lucene on PC, but Hibernate Search is too heavy for Android and I think ORMLite suits for ...
0
votes
1answer
82 views

Android SDK r18 appears to have broken ORMLite

I am using ormlite v4.35 and I just had to update my android tools to r18 in eclipse, because the IDE would not build my project until I upgraded the tools. After the upgrade the following line throws ...
1
vote
1answer
35 views

ORMLite - CallBatchTasks() individually or once for all updates?

I'm using ORMLite on Android, and have 7 tables in which I need to create/update multiple entries. I'm using the callBatchTasks() method on each of my dao's individually to do this at present, but I ...
0
votes
2answers
66 views

Is there an easy way to add a last modified timestamp while using ORMLite and Android?

I want to add a field indicating the last modified or last accessed time for my objects. Is there an easy, auto refreshed method for doing so?
0
votes
1answer
45 views

persist bidirectional relationship ormlite

I have these classes: public class AllegationContent { @DatabaseField(generatedId = true) protected long id; @DatabaseField(canBeNull = true, foreign = true) private AllegationItem ...
0
votes
1answer
71 views

How do I properly annotate inheritance classes using ORMLite?

I'm trying to use inheritance with ORMLite and I can't work out if it is supported or not from looking at the documentation and googling. What I want to do is have public abstract class Person{ ...
1
vote
1answer
51 views

createOrUpdate() always creates a new entry in the database with ORMLite

In my Android project, ORMLite is functioning as a cache. I'm downloading data from a web server and placing it in the database. I'm calling createOrUpdate on my objects, but duplicates are appearing ...
0
votes
1answer
83 views

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 ...
0
votes
1answer
62 views

Why am I getting a DatabaseObjectNotClosedException with OrmLite under Android?

I get a android.database.sqlite.DatabaseObjectNotClosedException: Application did not close the cursor or database object that was opened here when starting a new Activity using OrmLite. I'm not ...
1
vote
1answer
105 views

Case insenstive order by with ormlite and sqlite in android

I want to order my data objects from an ORMLite DAO case insensitively. Currently I am using the following sqlite code to order my owner items case sensitively: ...
1
vote
1answer
104 views

Ormlite database helper - onCreate() not called

I am using ormlite.android.4.31.jar I have typical DatabaseHelper public class DatabaseHelper extends OrmLiteSqliteOpenHelper { private static final String DATABASE_NAME = "realestate.db"; ...
0
votes
2answers
46 views

ORMlite creating more then one table ANDROID

I understand the ORMLite Android examples. However, I have more then one class that I want to map with the ORMlite. In the example to create the table which match with "SimpleData" class we used ...
0
votes
1answer
87 views

Does ormlite support inheritance?

Does ormlite support this three inheritance-strategies? table per class hierarchy table per subclass table per concrete class I found this discussion on the ORMLite user group, but I'm not ...
0
votes
2answers
59 views

Why ormlite has its own annotations?

From what I see in ormlite it has implemented its annotations as well as JPA standard annotations. First of all, what was the reason of designing new set of annotations? Secondly, how one can use ...
1
vote
1answer
105 views

Android + ORMLite + java.sql.Timestamp

I have an Android project which uses ORMLite. All works fine, but for some fields in database it uses java.sql.Timestamp as field type. It worked fine on ORMLite 4.10, which I used before. But now I ...
0
votes
1answer
42 views

Ormlite - Constructor call failing when BaseDaoImpl is extended

I have the following tables - @DatabaseTable(tableName="b", daoClass=B_DaoImpl.class) public class B { @DatabaseField public String b1 ; public B(){ // For Ormlite } } ...
1
vote
1answer
92 views

Implementing OnClickListener in Android project with Ormlite

I am using Ormlite to implement the persistense layer and, as my application contains buttons that can be reused in several parts of the code, I would like to create a class that implements ...
0
votes
1answer
84 views

Ormlite with MySQL

I'm developing android app that needs a DB. I had experience with Hibernate but I didn't try it because I'm hearing that it's too much for android. I followed this nice tutorial [1] to setup ormlite ...
0
votes
0answers
44 views

ormlite createTableIfNotExists fails if table has index

I have a simple class like this : @DatabaseTable(tableName = "VlpTag") public class VlpTag implements Serializable { private static final long serialVersionUID = -4912974444196844860L; ...
0
votes
1answer
57 views

OrmLite Android, setting foreignAutoRefresh to true results in join (self join) query?

Using ORMLite under Android, when you set foreignAutoRefresh to true, does this result in join query or does ORMLite issue two queries one after another -- the "main query" and call to foreign objects ...
4
votes
2answers
81 views

Where do I find the ApplicationContext needed to initialize ORMLite?

I'm working with android and ormlite. I have a problem to initialize a ForeignCollection. I found this, to initialize it: dao.getEmptyForeignCollection() But for the dao, i need the ...
0
votes
1answer
29 views

Ormlite mapping fields to a simple member class

I'm experimenting with ORMLite for android. I have a pre built SQLite db that i am loading on the android device. I have stored position information as LocationX, LocationY columns: CREATE TABLE ...
3
votes
1answer
116 views

ORMlite for Android: is this a good model?

I'working on a db application with ORmlite, my model is like this: MDL object.. DatabaseTable(tableName = "UserCars") public class CarMDL { @DatabaseField(generatedId = true) private int ...
0
votes
1answer
124 views

Android encryption/decryption with ormlite possible?

I'm using ormlite for my android-app. But now i have a problem. I have a class user with an attribute password. I want to encrypt/decrypt it. But i haven't found a solution, which works with ormlite. ...
0
votes
1answer
76 views

Map PostgreSql money data type to ORMLite

What type of data I should define on my java model for PostgreSQL money type? I know I could use BigDecimal, but it map to varchar(255) on PostgreSQL.
1
vote
2answers
111 views

Multiple, combined OR conditions in ORMLite

I like to have a query like this: select data from table where (x > 1 and x < 100) or (x > 250 and x < 300) In ORMlite, that's possible using this code: final ...
3
votes
3answers
180 views

Proguard with OrmLite on Android

How should I use proguard with ormlite library on Android? Trying this: -keep class com.j256.** -keepclassmembers class com.j256.** -keep enum com.j256.** -keepclassmembers enum com.j256.** -keep ...
0
votes
1answer
67 views

Ormlite: Use generic as type for id

I'm using ormlite for database interaction in java. Works fine. Now I want to create a generic entity class. Perhaps I'll start with a bit of code to explain it. AbstractId is something like a base ...
0
votes
1answer
36 views

Querying persistent objects by attributes on their relations using ORMLite.

I have just started to read about ORMLite so I am still a beginner. As far as I understand I can query objects using any of their persistent attributes. For example, if I have the following classes: ...
1
vote
1answer
83 views

Updating objects and their relations using ORMLite

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 ...
0
votes
1answer
96 views

Android ormlite Multi-table mapping

I want to use ormlite in my android project, but I don't know how to solve the multi-table mapping.Some suggest?
0
votes
2answers
76 views

create / open database after closing

In my app, after user logs in, database is created. When user logs out, I have to delete the database from the internal storage to save space. The problem is, after deleting the database and a user ...
0
votes
2answers
194 views

How can I improve this method of loading objects with ORMLite on Android?

I am loading a set of objects (and their foreign objects) using ormlite 4.35 on Android. It takes (in the emulator) between 16 and 19 seconds for the timing in the getAllCragsWithLocation() method ...
1
vote
2answers
282 views

Android ormlite update rows in Serialized Object

I have 3 tables: @DatabaseTable(tableName="user") public class TableUser implements Serializable{ @DatabaseField(dataType = DataType.SERIALIZABLE) private LinkedList<TableProfile> ...
0
votes
1answer
108 views

ORMLite foreign field null on create, not null on query

When writing an instance of my data class to the database via ORMLite, and one of the child members (a foreign field) is null, I get back a non null child member. Data classes as follows: public ...

1 2 3 4