从 NSMutable 字典中分离键和对象,并在 sqlite 的插入命令中使用值
大家好,我正在 iPhone 中开发一个 sqlite 应用程序。 因为我是这个应用程序的新手,所以我不知道如何在 sqlite 的插入语句命令中使用 NSMutableDictionary 中的键和对象。 例如,我想要以下格式的插入语句。
INSERT INTO TABLENAME(列名作为 NSMUTABLEDICTIONARY 中的键)值(值作为 NSMUTABLEDICTIONARY 中的对象) 请帮帮我。 谢谢
hi folks i am developing an sqlite application in iphone.
since i am new to this application, i dont how to use the key and objects from NSMutableDictionary in the command of insert statement of sqlite.
for example , i want the insert statement in the following format.
INSERT INTO TABLENAME (COLUMN NAMES AS KEYS FROM NSMUTABLEDICTIONRY) VALUES (VALUES AS OBJECTS FROM NSMUTABLEDICTIONARY)
please help me out.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我实际上对 SQL 知之甚少,但也许这样的东西会对你有所帮助:
I have actually very little knowledge about SQL, but maybe something like this will help you:
您可以使用快速枚举来循环字典:
这样就可以很容易地构建您的语句。
You can use fast enumeration to loop through the dictionary:
With that it should be easy to construct your statement.