Ich erhalte keine Ergebnisse. Wie kann ich eine boolesche Bedingung in eine where
Klausel in SQLite?
Ich habe Folgendes ausprobiert
"Select * from table where col = 1"
"Select * from table where col = '1'"
"Select * from table where col = true"
"Select * from table where col = 'true'"
"Select * from table where col = 'True'"
"Select * from table where col is True"
Nichts. Ich habe sogar versucht, "true" als die whereArgs in einer Abfrage-Funktion.
Wie kann ich es reparieren?