¿Por qué web3.db.putString arroja un error?

Cada vez que intento web3.db.putString("user","name","jon_lobo")el comando desde la consola Geth, arroja el siguiente error

Error: el método db_putString no existe/no está disponible en web3.js:3119:20 en web3.js:6023:15 en web3.js:4995:36 en:1:1

Respuestas (1)

Parece que web3.db se eliminó en geth 1.4, personalmente encontré el mismo problema antes

> web3.db
{
  getHex: function(),
  getString: function(),
  putHex: function(),
  putString: function()
}
> web3.db.putString('testDB', 'key', 'myString')
Error: The method db_putString does not exist/is not available
    at web3.js:3104:20
    at web3.js:6191:15
    at web3.js:5004:36
    at <anonymous>:1:1

> web3.db.putHex('testDB', 'key', web3.fromAscii('myString'))
Error: The method db_putHex does not exist/is not available
    at web3.js:3104:20
    at web3.js:6191:15
    at web3.js:5004:36
    at <anonymous>:1:1

> web3.db.getString('testDB', 'key')
Error: The method db_getString does not exist/is not available
    at web3.js:3104:20
    at web3.js:6191:15
    at web3.js:5004:36
    at <anonymous>:1:1

> web3.db.getHex('testDB', 'key')
Error: The method db_getHex does not exist/is not available
    at web3.js:3104:20
    at web3.js:6191:15
    at web3.js:5004:36
    at <anonymous>:1:1

> web3.version
{
  api: "0.18.1",
  ethereum: "0x3f",
  network: "65535",
  node: "Geth/v1.6.1-stable-021c3c28/linux-amd64/go1.8.1",
  whisper: undefined,
  getEthereum: function(callback),
  getNetwork: function(callback),
  getNode: function(callback),
  getWhisper: function(callback)
}

y encontré esta respuesta: Remove web3.db ,


espero que pueda ayudar