我正在开发数据驱动的android应用程序,我在运行相同的SQL语句后在不同的设备中获得不同的值
SQL:
select sum(quantity_on_hand-issued_quantity) as Quantity_On_Hand, a.vaccine_name
from vaccine a, vaccine_detail b
where a.vaccine_id=b.vaccine_id and strftime("%m", b.date) < '11' and a.vaccine_id= 4
详细说明:当它在模拟器上运行时会返回一个值,但是当我在真正的Android设备上运行它时,它会返回null。
答案 0 :(得分:1)
尝试增加模拟器的RAM并尝试..你应该更多地依赖设备返回的值。