The JDB script is a part of Skyrim SE’s Papyrus scripting ecosystem. This script is not present in the vanilla game, but can be found in modded sources like JContainers (JContainers).
For this script, the Papyrus index knows about:
- 16 functions
Inheritance Tree
No indexed scripts extend this script.
Properties
No properties found.
Events
No events found.
Functions
- Found in:
- JContainers
Attempts to retrieve the value associated with the @path.
For ex. the following information associated with 'frosfall' key:"frostfall" : {
"exposureRate" : 0.5,
"arrayC" : ["stringValue", 1.5, 10, 1.14]
}then JDB.solveFlt(".frostfall.exposureRate") will return 0.5 and
JDB.solveObj(".frostfall.arrayC") will return the array containing ["stringValue", 1.5, 10, 1.14] values- Found in:
- JContainers
- Found in:
- JContainers
- Found in:
- JContainers
- Found in:
- JContainers
- Found in:
- JContainers
Attempts to assign the @value. Returns false if no such path.
If 'createMissingKeys=true' it creates any missing path elements: JDB.solveIntSetter(".frostfall.keyB", 10, true) creates {frostfall: {keyB: 10}} structure- Found in:
- JContainers
- Found in:
- JContainers
- Found in:
- JContainers
- Found in:
- JContainers
- Found in:
- JContainers
Associates(and replaces previous association) container object with a string key.
destroys association if object is zero
for ex. JDB.setObj("frostfall", frostFallInformation) will associate 'frostall' key and frostFallInformation so you can access it later- Found in:
- JContainers
Returns true, if JDB capable resolve given @path, i.e. if it able to execute solve* or solver*Setter functions successfully
- Found in:
- JContainers
returns new array containing all JDB keys
- Found in:
- JContainers
returns new array containing all containers associated with JDB
- Found in:
- JContainers
writes storage data into JSON file at given path
- Found in:
- JContainers
Returns underlying JDB's container - an instance of JMap.
The object being owned (retained) internally, so you don't have to (but can) retain or release it.
