How can i perform below condition based operation in swift FMDB?
let result:FMResultSet=database.executeQuery("select * from image where id = ?", withArgumentsInArray: nil)
How can i perform below condition based operation in swift FMDB?
let result:FMResultSet=database.executeQuery("select * from image where id = ?", withArgumentsInArray: nil)
let result:FMResultSet=database.executeQuery("select * from image where id = ?", withArgumentsInArray: ["10"])