Search found 12 matches
- 28.05.2024, 07:01
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Sorting by calculated field does not work
- Replies: 9
- Views: 958
Re: Sorting by calculated field does not work
Thank you. Sorting works.
- 15.05.2024, 21:05
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Sorting by calculated field does not work
- Replies: 9
- Views: 958
Re: Sorting by calculated field does not work
Error executing CurrentRows.Sort(HighLevelSort)
procedure TZAbstractRODataset.InternalSort;
in src\component\ZAbstractRODataset.pas
procedure TZAbstractRODataset.InternalSort;
in src\component\ZAbstractRODataset.pas
- 15.05.2024, 11:00
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Zeos 7.3 testers-thread
- Replies: 286
- Views: 50521
Re: Zeos 7.3 testers-thread
Thank you, there is no error installing FirebirdAPI = legacy
- 14.05.2024, 16:21
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Sorting by calculated field does not work
- Replies: 9
- Views: 958
- 14.05.2024, 16:19
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Zeos 7.3 testers-thread
- Replies: 286
- Views: 50521
- 14.05.2024, 13:14
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Zeos 7.3 testers-thread
- Replies: 286
- Views: 50521
Re: Zeos 7.3 testers-thread
in lazarus 3.99 with fpc 3.2.2. no error, with fpc 3.3.1 access violation error
- 14.05.2024, 07:44
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Zeos 7.3 testers-thread
- Replies: 286
- Views: 50521
Re: Zeos 7.3 testers-thread
lazarus win32/win64 ver. 3.99
fpc 3.3.1
firebird 3.0
http://svn.code.sf.net/p/zeoslib/code-0 ... .0-patches
error in file src\plain\ZPlainFirebird.pas
function IMaster.getStatus(): IStatus;
begin
Result := MasterVTable(vTable).getStatus(Self);
end;
fpc 3.3.1
firebird 3.0
http://svn.code.sf.net/p/zeoslib/code-0 ... .0-patches
error in file src\plain\ZPlainFirebird.pas
function IMaster.getStatus(): IStatus;
begin
Result := MasterVTable(vTable).getStatus(Self);
end;
- 14.05.2024, 07:05
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Sorting by calculated field does not work
- Replies: 9
- Views: 958
Re: Sorting by calculated field does not work
The error occurs in the file\src\dbc\ZDbcCache.pas
- 22.04.2024, 10:47
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Sorting by calculated field does not work
- Replies: 9
- Views: 958
Re: Sorting by calculated field does not work
Sorting by calculated field does not work. Example attached.
- 10.04.2024, 15:02
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Sorting by calculated field does not work
- Replies: 9
- Views: 958
Re: Sorting by calculated field does not work
ERROR: ACCESS VIOLATION
lazarus-3.2-fpc-3.2.2-win64
zeos 8.0 last
http://svn.code.sf.net/p/zeoslib/code-0 ... .0-patches
Sample project:
https://disk.yandex.ru/d/o8XHP42Xq0-Z8Q
lazarus-3.2-fpc-3.2.2-win64
zeos 8.0 last
http://svn.code.sf.net/p/zeoslib/code-0 ... .0-patches
Sample project:
https://disk.yandex.ru/d/o8XHP42Xq0-Z8Q
- 15.01.2024, 07:39
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Sorting by calculated field does not work
- Replies: 1
- Views: 337
Sorting by calculated field does not work
Sorting does not work when creating the calculated qty: TFloatField field in TZQuery.
FieldName := FixFieldName('qty') + ' Desc'; TZAbstractRODataset(ADataSet).SortedFields:=FieldName;
An error appears.
FieldName := FixFieldName('qty') + ' Desc'; TZAbstractRODataset(ADataSet).SortedFields:=FieldName;
An error appears.
- 15.01.2024, 07:06
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Sorting by calculated field does not work
- Replies: 9
- Views: 958
Sorting by calculated field does not work
I create a calculated 'qty' field as TFloatField in TZQuery.
OnCalcFields
Queryqty.Value := 4;
When sorting
FieldName := FixFieldName('qty') + ' Asc'
TZAbstractRODataset(ADataSet).SortedFields:=FieldName;
Error appears
OnCalcFields
Queryqty.Value := 4;
When sorting
FieldName := FixFieldName('qty') + ' Asc'
TZAbstractRODataset(ADataSet).SortedFields:=FieldName;
Error appears