从SQLite表iOS中检索值

时间:2016-02-10 05:29:14

标签: ios fmdb select-query ios-sqlite

由于我是iOS编程的新手,我对从<resources> <!-- Base application theme. --> <style name="AppTheme" parent="AppTheme.Base"> <!-- Customize your theme here. --> </style> <style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar"> <item name="colorPrimary">@color/primaryColor</item> <item name="colorPrimaryDark">@color/primaryColor</item> <item name="colorAccent">@color/primaryColor</item> </style> 数据库表中检索与特定整数id对应的数据有疑问?

这是我尝试但似乎错了:

SQLite

问题是否与Integer类型转换有关?

1 个答案:

答案 0 :(得分:1)

只需像这样使用-numberWithInteger:: -

NSInteger id=  sender.tag;
FMResultSet *rs = [self.databaseFM executeQuery:@"select * from tblVenue where venue_id = ?", [NSNumber numberWithInteger:id]];