Hi,
I have a question regarding KeyValueStore.
I usually close all my resultsets, but why is "c" not closed here? Is it because it's using SQLite and closing resultsets are only recommended for ConnectionPools?
Thank you
I have a question regarding KeyValueStore.
ListKeys:
'Returns a list with all the keys.
Public Sub ListKeys As List
Dim c As ResultSet = sql1.ExecQuery("SELECT key FROM main")
Dim res As List
res.Initialize
Do While c.NextRow
res.Add(c.GetString2(0))
Loop
Return res
End Sub
I usually close all my resultsets, but why is "c" not closed here? Is it because it's using SQLite and closing resultsets are only recommended for ConnectionPools?
Thank you