SQlite OR operator request multiple parameters

I’m trying to retrieve some infos from my sqlite BD. I look for different entries for the same row.

Let’s say a table ‘user’ which contains a row called ‘id’. Or do it get users where the id are equal to myVar1 or myVar2 ?

I tried

req = "SELECT * from user WHERE id = ? or id =  ? or id = ?"
this.db.executeSql(req, ["44","22", "44"])

But I get no entries (but I normally should)

Any solutions ?