0
What databases do bitcoin core (nodes) uses? And how looks tables structure? I can't find it anywhere...
0
What databases do bitcoin core (nodes) uses? And how looks tables structure? I can't find it anywhere...
4
There simply is none. There's a key value store in LevelDB for the UTXO, and for miscellaneous things like the locations of block files on disk. Relational databses are far too slow for the task, and unnecessary given the type of information being stored.
LevelDB and BerkeleyDB? – MCCCS – 2019-05-19T13:50:33.363
1BDB is not used for storing block chain data and is included for historical reasons. – Anonymous – 2019-05-19T14:23:28.677