db_putHex,将二进制数据存储在本地数据库中。
请注意,此功能已被弃用,将来会被删除。
参数
- String - 数据库名称。
- String - Key名称.
- DATA - 要存储的数据.
params: [
"testDB",
"myKey",
"0x68656c6c6f20776f726c64"
]
返回
- Boolean - 如果存储值则返回true,否则返回false。
例子
// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"db_putHex","params":["testDB","myKey","0x68656c6c6f20776f726c64"],"id":73}'
// Result
{
"id":1,
"jsonrpc":"2.0",
"result": true
}