标签: iphone ios4 sqlite
我能够在sqlite3数据库中插入和检索整数,文本数据类型。你能指导我如何为我的iPhone应用程序的浮点数据类型做同样的事情。
答案 0 :(得分:1)
sqlite3_bind_double(stmt, 7, [[person valueForKey:@"salary"] floatValue]);
http://www.sqlite.org/c3ref/bind_blob.html
Difference between float and double