I'd like to use myBatis (iBatis 3) in an Android application. Has anyone tried such a thing or know of any resources for this?

link|improve this question
feedback

2 Answers

The first thing to do in order to do that is to compile myBatis for Dalvik. But it's likely to be too heavy for a device like a smartphone.

If you are looking for a lightweight persistence layer, you could look at Ammentos:

http://www.ammentos.org/

Same trouble: you will need to compile it for Dalvik.

Existing ORMs for Android:

http://ormlite.sourceforge.net/sqlite_java_android_orm.html

https://www.activeandroid.com/

link|improve this answer
1  
Thanks, but I prefer myBatis because it's so efficient and I have control over the SQL. – Scotty Jan 4 '11 at 19:14
feedback

aBatis is a data mapper framework available for Android
 that couples objects with stored procedures or
 SQL statements using an XML descriptor or annotations.
aBatis is like an Android equivalent of iBatis.

---simple & light ORM library like iBatis for Web development
--carrying ibatis's feature
--easy-to-use as iBatis
--shorten a development period
--independent of development phase
--Android sdk1.6 and up

http://code.google.com/p/abatis/

link|improve this answer
Website here now: sonixlabs.com/abatis – Traroth Feb 4 at 11:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.