12.08.2004, 08:53 | #1 |
Участник
|
Как получить содержимое поля из queryrun. Я не знаю, какие таблицы в нем содержатся. Пробовала так, не получается:
_anytypeA = (queryRun.get(tableId)).(fieldId) - синтаксическая ошибка _anytypeA = queryRun.get(tableId).(fieldId) - ошибка при выполнении |
|
12.08.2004, 10:20 | #2 |
Administrator
|
Common common;
... common = queryRun.get(tableId); _anytypeA = common.(fieldId);
__________________
Not registered yet? Register here! Have comments, questions, suggestions or anything else regarding our web site? Don't hesitate, send them to me |
|
12.08.2004, 10:29 | #3 |
Участник
|
На такое пишет ошибку при выполнении: 'поле с идентификатором 1 в таблице common не обнаружено'
|
|