I'm trying to implement the KVS for the first time. I'm getting this error:
Unknown type: resultset
Are you missing a library reference?
(screen shots of all this are attached)
I've read several threads on this and can't see that I'm missing anything. I'm using B4J 4.20.
I've added SQLite to the header of the main script:
#Region Project Attributes
#MainFormWidth: 600
#MainFormHeight: 400
#AdditionalJar: sqlite-jdbc-3.7.2
#AdditionalJar: bcprov-jdk15on-150
#End Region
In the class module "sql1" is red:
Public Sub Initialize (Dir As String, FileName As String)
If [color=red]sql1[/color].IsInitialized Then [color=red]sql1[/color].Close
[color=red]sql1[/color].InitializeSQLite(Dir, FileName, True)
CreateTable
End Sub
These are the libraries added. I tried adding jSQL but that didn't solve it.