从数据库获取数据的问题
我正在尝试从数据库中获取详细信息,以便将文件从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1 是数据库中的记录数。
首先在数据库类中查询您的请求
然后在你的活动中
接收光标
作为
1 is the number of records in your database.
First query your request in database class
and then in you activity
receive cursor
as