How to write a query using ormlite instead of using .create or any other similar thing? Could you show me how this simple example is:
SELECT name FROM client
EDIT, as I can’t answer myself: I think I had to look a little more, anyway, I found how to do this with QueryBuilder as follows:
newDao.query(newDao.queryBuilder().where.eq("name",valueofname)
If someone knows how to write a complete query that would be great, otherwise I will stick to this solution
query-builder ormlite
Majid
source share