Returns string from the local database.
Note this function is deprecated and will be removed in the future.
String
- Database name.String
- Key name.params: [
"testDB",
"myKey",
]
String
- The previously stored string.
// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"db_getString","params":["testDB","myKey"],"id":73}'
// Result
{
"id":1,
"jsonrpc":"2.0",
"result": "myString"
}