Skip to main content

Base Get

Base Get Method

Table Of Base Get Method

Parameters

  • table (table name to get the data from)
  • key (the key name you want to get your data from it)
base_get(table, key)

Example Usage

await db.base_get('my_table', 'foo');
// -> Gets foo key name value (which is bar) in the table 'my_table' for encrypted rows using base_set method

Returned Data

Returns the stored data in provided key name

bar