如何比较String和SELECT结果?

时间:2012-09-05 08:55:41

标签: android string select

我使用方法

rawQuery("select * from schedule where week = ? and firstweek < ? and lastweek > ?", new String[]{weekday})

位置“?”是字符串,但如何将它与Select语句进行比较?

1 个答案:

答案 0 :(得分:2)

鉴于查询期望有三个参数,再向String数组添加两个参数:

new String[]{weekday, new Date(), new Date()}