Hi all, I tried the following code with both Virtuoso for Windows and Linux:
$db=odbc_connect('virtuoso','dba','dba'); $result = odbc_exec($db,'SELECT TOP 3 * FROM DB.DBA.SYS_USERS'); print_r(odbc_result_all($result)); However, I always get the full result set and not just the top three as I would expect. What am I doing wrong? Sören