mirror of
https://github.com/vrana/adminer.git
synced 2025-08-19 12:51:27 +02:00
PDO: Support binary fields download
This commit is contained in:
@@ -129,7 +129,10 @@
|
||||
* @return string
|
||||
*/
|
||||
function value($val, $field) {
|
||||
return $val;
|
||||
return (method_exists($this->_conn, 'value')
|
||||
? $this->_conn->value($val, $field)
|
||||
: (is_resource($val) ? stream_get_contents($val) : $val)
|
||||
);
|
||||
}
|
||||
|
||||
/** Quote binary string
|
||||
|
Reference in New Issue
Block a user