Hola a todos...
Alguien me puede ayudar explicandome como puedo mostrar datos realizados de una consulta de SQLite.
Coloque las siguientes instrucciones pero al ejecutar me sale el error : "An error has ocurred in sub main_activity_create(java line:248 android.database.
CursorindexoutofboundsException: Index -1 requested, with a size of 1
Sub Activity_Create(FirstTime As Boolean)
If FirstTime Then
SQL.Initialize(File.DirRootExternal, "conelec.fdb", True)
End If
Activity.LoadLayout("Main")
Dim Cursor As Cursor
Cursor = SQL.ExecQuery("SELECT NOMBRE FROM USUSIS ")
label4.Text = Cursor.GetString("NOMBRE")
End Sub
Alguien me puede ayudar explicandome como puedo mostrar datos realizados de una consulta de SQLite.
Coloque las siguientes instrucciones pero al ejecutar me sale el error : "An error has ocurred in sub main_activity_create(java line:248 android.database.
CursorindexoutofboundsException: Index -1 requested, with a size of 1
Sub Activity_Create(FirstTime As Boolean)
If FirstTime Then
SQL.Initialize(File.DirRootExternal, "conelec.fdb", True)
End If
Activity.LoadLayout("Main")
Dim Cursor As Cursor
Cursor = SQL.ExecQuery("SELECT NOMBRE FROM USUSIS ")
label4.Text = Cursor.GetString("NOMBRE")
End Sub