从数据库获取数据的问题

发布于 2024-12-06 13:07:59 字数 395 浏览 0 评论 0原文

我正在尝试从数据库中获取详细信息,以便将文件从 DDMS 上传到 ftp 服务器。通常,我可以在不使用 SQLiteDatabase 的情况下完成此操作。

但是,现在我需要使用存储在数据库中的 ftp 服务器主机、端口、用户名、密码上传文件。我已经考虑过此 function 的示例。 使用此方法时出现此异常:

android.database.CursorIndexOutOfBoundsException: Index -1 requested, with a size of 1

我如何清除此异常错误?我怎样才能将值从数据库传递到我的 FTP。

I'm trying to fetch the details from Database for uploading the files from DDMS to ftp server. Normally, i can done this without using SQLiteDatabase.

But, now i need to upload the files using the ftp server Host, Port, Username, Password which are stored in Database. I've considered this Example to this function. I've this exception when using this method :

android.database.CursorIndexOutOfBoundsException: Index -1 requested, with a size of 1

How can i Clear this error? And how can i pass the values from database to my FTP.

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

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

发布评论

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

评论(1

往日情怀 2024-12-13 13:07:59

1 是数据库中的记录数。
首先在数据库类中查询您的请求
然后在你的活动中
接收光标
作为

Cursor c=db.data();
                (data is a method used for query and db is your object of database class)
c.moveToFirst();
while (c.isAfterLast() == false) {
    //upload your database 
    c.moveToNext();
}

1 is the number of records in your database.
First query your request in database class
and then in you activity
receive cursor
as

Cursor c=db.data();
                (data is a method used for query and db is your object of database class)
c.moveToFirst();
while (c.isAfterLast() == false) {
    //upload your database 
    c.moveToNext();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文