kvs

  1. Pxs

    Android Question Export database from KeyValueStore

    Hello Is there a way to export ALL the saved data in the sql lite databse used by KeyValueStore? I exported kvs.dat in xui.DefaultFolder ( KVS.Initialize(xui.DefaultFolder,"kvs.dat") ) but can't make sense of the data. I also expected multiple tables but there is only one. In my code many of...
  2. A

    Android Question KVS.remove and data persistence

    Hello Im using KeyValueStore (the new and recommended one) to store and load bytearrays ( representing device configuration backups) Everything works fine, until i uninstall the app. Upon reinstallation, all the removed keys ( removed by KVS.remove ) come back, with their name and value...
  3. J

    Android Question can't serialize object

    I have an object I am trying to save with the Key-Value Store but it fails serialization, I think this is due to it containing a bounding box , (being a list of doubles (lat,lng, lat lng)) The project also contains other classes with lists of coordinates which I am looking to save ,so Im looking...
  4. A

    Bug? KVS issues during compilation in Xcode

    Hello everyone. I put the keyValueStore class 2.20 version on my project and I don´t touch anything of it. On B4i all worked well but during compilation in Xcode I have 4 issues in this class. My Mac is Mac Mini 2014 running MacOS Mojave and my Xcode version is 10.1 I also have the latest...
  5. Pete_S

    Android Question Save Map To KeyValueStore, Load Map From KeyValueStore

    I created this code. It works but I was wondering if there is an easier/optimized way to save a map to a KeyValueStore and retrieve it back from the KeyValueStore. Main: Sub Process_Globals End Sub Sub Globals End Sub Sub Activity_Create(FirstTime As Boolean) Dim map1 As Map...
  6. Dave O

    Android Question KVS and threading

    I'm using the Threading library to background-load hundreds of poker hands from KeyValueStore2, while the user plays new poker hands in the foreground. I noticed that when I save the most recent poker hand into KVS2, it stops the background thread. In other words, doing a Put when another...
  7. T

    Android Question keyValueStore

    Hello, I want to save some simple data to the application so the user dont have to fill them all the time (data like phone number and name), also I dont want to fetch data all the time from main SQL database. So i found out that KVS could help...
Top