Search found 12 matches

by alexkam75
28.05.2024, 07:01
Forum: ZeosLib 7.3/8.0 Forum
Topic: Sorting by calculated field does not work
Replies: 9
Views: 781

Re: Sorting by calculated field does not work

Thank you. Sorting works.
by alexkam75
15.05.2024, 21:05
Forum: ZeosLib 7.3/8.0 Forum
Topic: Sorting by calculated field does not work
Replies: 9
Views: 781

Re: Sorting by calculated field does not work

Error executing CurrentRows.Sort(HighLevelSort)
procedure TZAbstractRODataset.InternalSort;
in src\component\ZAbstractRODataset.pas
by alexkam75
15.05.2024, 11:00
Forum: ZeosLib 7.3/8.0 Forum
Topic: Zeos 7.3 testers-thread
Replies: 286
Views: 46673

Re: Zeos 7.3 testers-thread

Thank you, there is no error installing FirebirdAPI = legacy
by alexkam75
14.05.2024, 16:19
Forum: ZeosLib 7.3/8.0 Forum
Topic: Zeos 7.3 testers-thread
Replies: 286
Views: 46673

Re: Zeos 7.3 testers-thread

Image
by alexkam75
14.05.2024, 13:14
Forum: ZeosLib 7.3/8.0 Forum
Topic: Zeos 7.3 testers-thread
Replies: 286
Views: 46673

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
by alexkam75
14.05.2024, 07:44
Forum: ZeosLib 7.3/8.0 Forum
Topic: Zeos 7.3 testers-thread
Replies: 286
Views: 46673

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;
by alexkam75
14.05.2024, 07:05
Forum: ZeosLib 7.3/8.0 Forum
Topic: Sorting by calculated field does not work
Replies: 9
Views: 781

Re: Sorting by calculated field does not work

The error occurs in the file\src\dbc\ZDbcCache.pas
by alexkam75
22.04.2024, 10:47
Forum: ZeosLib 7.3/8.0 Forum
Topic: Sorting by calculated field does not work
Replies: 9
Views: 781

Re: Sorting by calculated field does not work

Sorting by calculated field does not work. Example attached.
by alexkam75
15.01.2024, 07:39
Forum: ZeosLib 7.3/8.0 Forum
Topic: Sorting by calculated field does not work
Replies: 1
Views: 294

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.
by alexkam75
15.01.2024, 07:06
Forum: ZeosLib 7.3/8.0 Forum
Topic: Sorting by calculated field does not work
Replies: 9
Views: 781

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