Android Sqlite 连接
我正在使用 sqlite 连接在 android 中开发一个游戏应用程序.. 一切都很顺利.. 但现在我想这样做,所以只有过去 20 条数据保留在我的数据库中.. 这意味着在每个插入数据语句中我想要删除最后一条数据 剩余最后添加20条数据
i am devloping a game application in android using sqlite connectivity.. all thing is going good.. but now i want to do like that, so only past 20 data remain in my database.. that mean at every insert data statment i want to delete last data remaining last assending 20 data
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以使用 sql 查询来完成。首先检索表中可用记录的总数。
然后使用 if-else 条件。
如果记录数>20
则{
根据条件删除一条记录;
在表中插入新记录。
}
别的
在表中插入新记录。
this can be done using sql query. First retrieve total number of records available in table.
then use if-else condition.
if number of records>20
then {
delete a record according to condition;
insert new record in table.
}
else
insert new record in table.