SQLite-优雅地设置ID
我想使用这样的数据库:
表犯错者(主键整数 ID、日期)
表格犯罪(数字 foreign_key_to_wrongdoer,短信犯罪)
我希望我的应用程序(在Python中)注册一个不法行为者(这应该为该条目提供一个唯一的整数)并注册针对他的第一个犯罪行为。我的想法比较笨拙:
插入到不法行为者(...)
id=cur.execute("选择 max(ID)") //这是选择最近的ID
cur.execute("插入到 犯罪('"+id+"'"犯罪+"'")")
即插入一个条目,从DB中选择其唯一键(假设其编号最大),然后用于后续查询。有更好的方法吗?
I want to use a database like:
table wrongdoer (primarykey integer
ID, date)table crime (numeric
foreign_key_to_wrongdoer, text crime)
I want my application (in python) to register a wrongdoer (which should give the entry a unique integer) and register the first crime against him. My idea is rather clumsy:
insert into wrongdoer(...)
id=cur.execute("select max(ID)")
//this is to select the most recent IDcur.execute("insert into
crime('"+id+"'"crime+"'")")
That is, insert an entry, select its unique key from DB (assuming its the highest number), and then use it for the subsequent queries. Is there a better way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查一下这个功能:
http://www.sqlite.org/c3ref/last_insert_rowid.html
Check this function out:
http://www.sqlite.org/c3ref/last_insert_rowid.html