gavin_wusj
15th March 2004, 07:15
Who can help me , what is the means :
"e = sdb.ge("ttfgld205",tfgld004.gcmp)"
thanks!

Hitesh Shah
15th March 2004, 08:36
This function sdb.ge (eq , lt etc) were used earlier and may be present in older scripts . Though there is no help on this function, looking at the code surrounding the function , it is equivalent db.ge which means.


long DB.GE( long table_id [, long lock] )
Reads record from table_id whose key value is greater than or equal to
the value entered in the corresponding section of the record
description.
There are two locks:

db.lock : lock record for update
db.delayed.lock : wait for locking until update

If there is no lock specified, the record will not be locked.



The functions DB.CURR, DB.FIRST, DB.LAST, DB.NEXT, DB.PREV, DB.EQ, DB.GT, DB.GE, DB.LT and DB.LE will be removed in the next version.

gavin_wusj
15th March 2004, 09:06
Ok, I see, thanks for your reply!