我正在學習FMDB,有很多種方法'executeQuery'和'executeUpdate'。Swift FMDB:我必須使用哪種方法?
executeQuery(sql,values:[Any])
executeQuery(sql,withArgumentsIn: [Any])
executeUpdate(sql,values:[Any])
executeUpdate(sql,withArgumentsIn: [Any])
我想知道這些方法的差異,當我必須使用哪種方法。
我可以使用任何方法嗎?
我感謝你的答案。 謝謝
是在有任何的executeUpdate差(SQL,值:[任意])和 的executeUpdate(SQL,withArgumentsIn:[任意])? 我可以使用任何東西嗎? – JKU
您可以通過跳轉到定義來查看'FMDatabase.h'類中的定義,它是關於拋出'Error' – Jack