I've been told in the past that I simply cannot access the KINI table during Init, because there is no prgCtx yet. A while ago I had thought I had a solution by grabbing the DB wizapi and calling .GetPrgCtx on that, and it worked great, except it turned out it causes problems during a database upgrade.
So in CS10 and up, is there any approved method for gaining access to the KINI table during init? I'm talking about an individual object's __Init method. For a long time now I've had some features that depend on a configuration option of some sort that needs to be set during the __Init method, because I set a certain subtype list or child type list or whatever that needs to be known when that object is registering with its subsystem. And for quite a while I had a solution that worked--I stored my configration in .ini files. But more recently I decided to move those configuration options into the KINI table so that I didn't have to keep .ini files on 5 or 10 different OTCS servers synchronized. And it works great for most options, but not the ones that I need access to during __Init.
And so I ask if there's a supported way to gain access to KINI during __Init.