Activity for iBoxDB

  • iBoxDB iBoxDB modified a comment on discussion General Discussion

    public class Player { public string playerName; public long playerExp; } GetConfig().EnsureTable<Player>("Players","Name","Experience","CardZ"); "Name", "Experience", "CardZ" are not the Fields of Class Player. Use Field-Name or Property-Name as Key .EnsureTable<Player>("Player", "playerName");

  • iBoxDB iBoxDB posted a comment on discussion General Discussion

    public class Player { public string playerName; public long playerExp; } server.GetConfig().EnsureTable<Player>("Players","Name","Experience","CardZ"); "Name", "Experience", "CardZ" are not the Fields of Class Player. Use Field-Name or Property-Name as Key .EnsureTable<Player>("Player", "playerName");

  • Vladislav Vladislav posted a comment on discussion General Discussion

    Hello everyone, i'm new to Unity as well as to IBoxDB, i would like to know why am...

1