如何从sqlite数据库中读取并显示它,然后在android中删除它?

发布于 2024-11-27 06:33:35 字数 152 浏览 0 评论 0原文

嗨,我是 android 新手,我将我的位置写入了 sqlite 数据库,但现在我希望读取顶行(按 id 排序)并将其发送到服务器(使其正常工作),然后删除。是否需要某种代码来执行此操作,因为 if (cursor.moveToFirst()) { 似乎不起作用?

Hi I'm new to android and I got my location writing to a sqlite database but now I want the top line (ordered by id) to be read and sent to a server (got this working) and then deleted. is there some sort of code I need to do this as if (cursor.moveToFirst()) { dose not seem to work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绾颜 2024-12-04 06:33:35

试试这个代码

 cursor.moveToFirst();
while(!cursor.isAfterLast())            
{
 //do something 
 cursor.getString(columnname);  
 cursor.moveToNext();           
}

try this code

 cursor.moveToFirst();
while(!cursor.isAfterLast())            
{
 //do something 
 cursor.getString(columnname);  
 cursor.moveToNext();           
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文