Here's a bit of code I came up with tha behaves just like mysql_fetch_object()
    function odbc_fetch_object($result)
    {
        $rs=array();
        if(odbc_fetch_into($result,&$rs))
        {
            foreach($rs as $key=>$value)
            {
    $fkey=strtoupper(odbc_field_name($result,$key+1));
                $rs_obj->$fkey = trim($value);
            }
        }
        return($rs_obj);
    }
Special thanks to previous posters for giving me a starting point for this code.