0

How can i perform below condition based operation in swift FMDB?

let result:FMResultSet=database.executeQuery("select * from image where id = ?", withArgumentsInArray: nil)

Amit Jagesha シ
  • 1,092
  • 12
  • 21

1 Answers1

0

let result:FMResultSet=database.executeQuery("select * from image where id = ?", withArgumentsInArray: ["10"])

Taufeek
  • 1
  • 2