
11.04.2012, 12:42
|
 |
Sir Richard Abramson
|
|
Регистрация: 05.04.2008
Сообщения: 5,505
Версия Delphi: XE10
Репутация: выкл
|
|
Код:
function TSQLiteTable.GetFieldByName(FieldName: string): string;
var
foo: string;
begin
foo := GetFields(self.GetFieldIndex(FieldName));
Result:=UTF8ToUnicodeString(foo);
setlength(foo, 0);
end;
|