Stuart Campbell
Stuart Campbell
Oops comments as my build server a minuet ago... Hi, The intention is to be thread safe. Do you have an example of what your doing that does not work?...
I'm guessing this is just a typo but you don't call save in either of the first two methods? To better understand whats going on can you log before you...
Hi, I think this would have to be done in two searches. ``` Dog dog = new RushSearch().whereEqual("name", dogName).findSingle(Dog.class); Parent parent = new RushSearch().whereEqual("listField", dog).findSingle(); ``` It's unlikely you would...
Hi, The default load order is the order they are inserted into the database. So there is not a way to resolve this. This use case has slipped by not...
``` Chat_Object chatObject = // Get your chat object from first search or where ever List orderedMsgs = new RushSearch() .whereChildOf(chatObject, "chat_msgs") .orderAsc("timestamp") .find(ChatMsg.class); ``` This bug means it will...
Thanks glad you like the library. There is no way to add column constraints. The only way I can think to add that feature would be by throwing an exception...
Planned for v1.2 hopefully complete in the new year
I guess it would be good to prefix SQLite Keywords. For now this is a list of terms that could cause problems. http://www.sqlite.org/lang_keywords.html Thanks
Hi, I don't quite understand whats going on are you able to copy in the setting and saving code? Thanks
You could extend them and name your class as you want. No need to implement any code. Then add @RushCustomTableName(name = "TableName") to your new classes. Would that solve your...