Search found 11 matches

by afreitag
16.02.2015, 16:43
Forum: ZeosLib 7.1 stable Forum
Topic: App with Zeos memory size increasing
Replies: 2
Views: 596

Re: App with Zeos memory size increasing

Yes, I remote using all DB drivers without one and using memory is quite low
by afreitag
11.02.2015, 18:02
Forum: ZeosLib 7.1 stable Forum
Topic: App with Zeos memory size increasing
Replies: 2
Views: 596

Re: App with Zeos memory size increasing

It seems that in new Zeos all DB drivers are loading in initialization, I'll check it
by afreitag
11.02.2015, 09:20
Forum: ZeosLib 7.1 stable Forum
Topic: App with Zeos memory size increasing
Replies: 2
Views: 596

App with Zeos memory size increasing

I have a simple Application.exe builded in Delphi XE, this App loads DLL library by function LoadLibrary('lib.dll'); in lib.dll there is a unit which uses ZDataset module, there is any Zeos object declaration, any Zeos object has been created, any DB ZConnection, any ZQuery, only LoadLibrary which u...
by afreitag
30.10.2013, 13:06
Forum: ZeosLib 7.0 Stable Forum
Topic: increase memory size used by XE App with Zeos 7
Replies: 9
Views: 3198

Re: increase memory size used by XE App with Zeos 7

I want to add that Application works with Postgresql DB, maybe Zeos supports this DB specifically, long time ago was a bug that Zeos truncate String only to 256 length.This may have been replaced by something more memory consuming ?
by afreitag
28.10.2013, 12:13
Forum: ZeosLib 7.0 Stable Forum
Topic: increase memory size used by XE App with Zeos 7
Replies: 9
Views: 3198

Re: increase memory size used by XE App with Zeos 7

with some changes in Zeos of course
by afreitag
24.10.2013, 11:57
Forum: ZeosLib 7.0 Stable Forum
Topic: increase memory size used by XE App with Zeos 7
Replies: 9
Views: 3198

increase memory size used by XE App with Zeos 7

my application.exe build in Delphi XE with old good Zeos 6 takes 57 MB of RAM, after changing on Zeos 7.0.3 the same App (connected with the same DB) takes 200 MB RAM :shock: All is working fine but this size... the same occurrence appears with Zeos 7.1.2, the same in Delphi XE3 (no matter compiling...
by afreitag
14.10.2013, 09:09
Forum: ZeosLib 7.0 Stable Forum
Topic: Delphi XE3 Zeos 7.0.3 Stable problem with Query.Param
Replies: 7
Views: 4525

Re: Delphi XE3 Zeos 7.0.3 Stable problem with Query.Param

reason of exception is the parameter 'standard_conforming_strings' in PosgreSQl DB, when this param is 'on' it's OK, when is 'off' the exception is raised, the question is: why the same application with the same database but with earlier Zeos version don't raise the exception when param 'standard_co...
by afreitag
03.10.2013, 12:01
Forum: ZeosLib 7.0 Stable Forum
Topic: Delphi XE3 Zeos 7.0.3 Stable problem with Query.Param
Replies: 7
Views: 4525

Re: Delphi XE3 Zeos 7.0.3 Stable problem with Query.Param

OK, so I have to check Connection properties or download new version of Zeos
by afreitag
17.09.2013, 09:13
Forum: ZeosLib 7.0 Stable Forum
Topic: Delphi XE3 Zeos 7.0.3 Stable problem with Query.Param
Replies: 7
Views: 4525

Re: Delphi XE3 Zeos 7.0.3 Stable problem with Query.Param

sorry exception is when sText := 'C:\User'; not sText := 'C:/User';
by afreitag
11.09.2013, 13:39
Forum: ZeosLib 7.0 Stable Forum
Topic: Delphi XE3 Zeos 7.0.3 Stable problem with Query.Param
Replies: 7
Views: 4525

Re: Delphi XE3 Zeos 7.0.3 Stable problem with Query.Param

Windows, PostgreSQL is the same as for last Zeos version, ZConnection settings maybe...
by afreitag
04.09.2013, 10:43
Forum: ZeosLib 7.0 Stable Forum
Topic: Delphi XE3 Zeos 7.0.3 Stable problem with Query.Param
Replies: 7
Views: 4525

Delphi XE3 Zeos 7.0.3 Stable problem with Query.Param

I have delphi xe3 prof. and zeos 7.0.3-stable installed, DB is PostgreSQL 9, and I have a problem when I put by Param string value (contains \U escape character) to TZQuery.SQL.Text. code: q := TZQuery.Create(nil); q.Connection := Conn; q.SQL.Text := 'select :content'; q.ParamByName('content').AsStr...