Osvaldo Ramirez

Hello guys
This code run fine using MySQL
oTotRecnos := SQLDataSet():new( "select cli_id from +cQuote+"CLIENTE"+cQuote+";" )
nTotRecnos := oTotRecnos:reccount()
oTotRecnos:destroy()
But, In PostgreSQL not, it show this error :
.= SQL ERROR ===========
Date: 20080415 22:57:11
C:\develop\DistSQL\SYSTEM01.EXE, Thread: 3
Windows Vista 06.00 Build 06000, SQLXpp: 3.1.24, Runtime: 1.90.331
SQLState: 42703, ErrorCode:7
ERROR: column "cli_id" does not exist;
Error while executing the query
So, if I change this
oTotRecnos := SQLDataSet():new( "select * from +cQuote+"CLIENTE"+cQuote+";" )
nTotRecnos := oTotRecnos:reccount()
oTotRecnos:destroy()
It run fine on Postgresql
I am testing using PostgreSQL 8.3
Some one know why ?
Thanks in advance
Osvaldo Ramirez