Fixed
Status Update
Comments
do...@gmail.com <do...@gmail.com> #2
Anyone?
yb...@google.com <yb...@google.com> #3
looks like we are failing to escape it.
i'll try to get it into 1.1
i'll try to get it into 1.1
do...@gmail.com <do...@gmail.com> #4
Hi, any news? =x
yb...@google.com <yb...@google.com> #5
so looks like we already escape " .
so just use "order" in your query and i'll add ' to the list as well.
so just use "order" in your query and i'll add ' to the list as well.
yb...@google.com <yb...@google.com> #6
to be correct, we also currently escape `. ' was just missing.
do...@gmail.com <do...@gmail.com> #7
Thanks!
I can survive using like this:
@Query("SELECT * FROM "order" ORDER BY createdAt ASC")
It worked!
I can survive using like this:
@Query("SELECT * FROM "order" ORDER BY createdAt ASC")
It worked!
Description
Version used: 1.0.0
Hi
I'm facing this crash when I try to use LiveData:
java.lang.IllegalArgumentException: There is no table with name 'order'
This is the query code:
@Query("SELECT * FROM 'order' ORDER BY createdAt ASC")
LiveData<List<Order>> getLiveData();
When I use this query code everything works fine:
@Query("SELECT * FROM address WHERE addressStatus <> 'DELETE'")
LiveData<List<Address>> getAll();
When I use others queries with 'order' in the query it works too.
I just started using LiveData and the reserverd word 'order' isn´t working in this case.