Anyone has experienced segmentation fault while reading blob (longblog) data from mysql using ODBC? If not, can you provide me few rows of code to show me how you fetch it? I am using php 5.3.3 and this code segfaults: $conn=odbc_connect("db","",""); $sql="select * from table where id=1"; $res=odbc_exec($conn,$sql); $row=odbc_fetch_object($res); Leandro