Hello,
I am haveing problems converting memo fields from Access into Text or Blob fiels in Mysql. I have written a script in PHP that connects via ODBC to the Access Database:
$query = "Select * from Films";
$result = odbc_do($connection,$query);
while(odbc_fetch_row($result)) {
$t1 = odbc_result($result,1);
}
this gives me the following error
FATAL: emalloc(): Unable to allocate 2043514880 bytes
I have found out that this only happens for MEMO fields. As soon as I change it to text, everything is cool. My problem is, that I cannot change the table to TEXT, so I have to find a solution on how to get the memo working...
any idea ?
Thanks