我希望使用sqlite在数据库中存储用户数据。如何在sqlite中创建游标并使用它导航到sqlite中数据库的末尾? 类似的东西:(python)
import sqlite3;
from datetime import datetime, date;
conn = sqlite3.connect('banklist.sqlite3')
c = conn.cursor()
c.execute('drop table if exists failed_banks')
c.execute('create table failed_banks(id integer primary key autoincrement,
name text, city text, state text, zip integer, close_date text, updated_date text)')
提前致谢。
答案 0 :(得分:-1)
很抱歉没有直接回答您的问题,但您是否考虑过查看“核心数据编程指南”。 http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/CoreData/cdProgrammingGuide.html
您可以直观地设计数据库,并使用自动生成的代码来访问您的数据。它节省了大量的时间和精力,并且不需要您编写SQL行。