|
|
#1 |
|
Участник
|
exist method on temporary table
Hi,
I'm trying to make exist method on temporary table something like this... Код: static boolean exist(MyTempTable _tempTable,
RefTableId _tableId,
RefRecId _recId)
{
return _tableid && _recId && (select RecId from _tempTable
where _tempTable.TableNum = _tableId
&& _tempTable.RecordNo = _recId
).RecId != 0;
}Any ideas what's the problem? |
|
|