function db_decode_blob

6.x database.pgsql.inc db_decode_blob($data)
6.x database.mysqli.inc db_decode_blob($data)
6.x database.mysql.inc db_decode_blob($data)

Returns text from a Binary Large OBject value.

Parameters

$data: Data to decode.

Return value

Decoded data.

Related topics

2 calls to db_decode_blob()
cache_get in drupal-6.x/includes/cache.inc
Return data from the persistent cache. Data may be stored as either plain text or as serialized data. cache_get will automatically return unserialized objects and arrays.
_update_cache_get in drupal-6.x/modules/update/update.module
Retrieve data from the private update status cache table.

File

drupal-6.x/includes/database.mysqli.inc, line 320
Database interface code for MySQL database servers using the mysqli client libraries. mysqli is included in PHP 5 by default and allows developers to use the advanced features of MySQL 4.1.x, 5.0.x and beyond.

Code

function db_decode_blob($data) {
  return $data;
}