标签: android string select
我使用方法
rawQuery("select * from schedule where week = ? and firstweek < ? and lastweek > ?", new String[]{weekday})
位置“?”是字符串,但如何将它与Select语句进行比较?
答案 0 :(得分:2)
鉴于查询期望有三个参数,再向String数组添加两个参数:
new String[]{weekday, new Date(), new Date()}