Gray
Gray
I think you should be able to use the `Dao` and `UpdateBuilder` for this. Something like: ub = dao.updateBuilder(); ub.updateColumnValue("price", 7.527E7D); ub.update(); Does that work? See: https://ormlite.com/docs/update-builder You can also...
Good test. Sounds like you've got a handle on it. Doesn't seem to the ORMLite's fault which is good. ;-) I'd create a `market_orders_temp` entity that extends `market_orders` so you...
Happy to help Casey. Best of luck. Let me know if there is anything ORMLite could have done better. I think that I'm going to add a `Dao.updateRaw(...)` method that...
Sorry, I don't quite understand this. When is this used? What is a custom table schema?
Any update here @vladaman ?
How does ormlite not recognizing the parameter? Is it filtering it somehow?
Yeah right now we don't have a SQL update mechanism. It would need both the previous and new versions of the fields. Actually @noordawod, we could do this if we...
Yeah that's a good idea as well @Rollczi . Get all of the columns in the database and add any that aren't there. I'm not sure if it would be...
Sorry to not leave feedback on this sooner. I've certainly read this issue and am still considering it. You've probably moved on but I've got some questions. I assume that...
What database type are you using here? And what version of ORMLite?