Hi,
Can somebody show me the correct way to use the PEAR_DB limitquery()?
I try this:
$result = $DB->limitQuery("SELECT * from Client LIMIT 0,1",0,1);
but it return the follwoing error:
Fatal error: Call to undefined function: limitquery() in ..
The purpose I want to use this limitquery is to solve the LIMIT problem which not support in MSSQL. So thinking of using the PEAR solution. Any better idea beside PEAR limitquery() solution for MSSQL?
Thanks
Louis