Help!
I am working with the following ADODB connection:
$conn = new COM("ADODB.Connection") or die("Cannot start ADO");
$conn->Open("DSN=xy");
$sql = "SELECT FILESOURCE FROM Table";
$rs = $conn->Execute($sql);
$file = $rs->Fields("FILESOURCE");
echo $file->value;
When I try to read the binary (blob) field value, i become the result as a string: "Array".
When I try to open the array, I find chars in integer-array stucture, within the ACCESS field definition, and a lot of shit.
Please help me, how can i read out the Blob field from Access 2000?
Lot of Thnx,
Iro