I have variable:
String owner=\"Mike\"; String[] columns ={\"quantity\", \"price\",\"owner\"}
My cursor is trying to get Curso
Curso
SELECT quantity, price, owner, FROM sku_table WHERE owner='Mike' this is the correct SELECT. You forget the ' ' (single quotes)
SELECT quantity, price, owner, FROM sku_table WHERE owner='Mike'