Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的表中有一个日期列,我想在 iPhone 应用程序中获取它,我使用以下方法来获取值:
objPlayer.type = sqlite3_column_int(selectstmt, 1);
现在我找不到像 sqlite3_column_date 这样的东西。
这是我可以用于此目的的方法。
你可以使用sqlite3_column_text()since sqlite3_column_date()is the same。
sqlite3_column_text()
sqlite3_column_date()