Search found 10 matches

by seekbirdy
23.09.2009, 08:05
Forum: Firebird
Topic: FB 2.0.5 Embedded exception on application exit
Replies: 1
Views: 447

FB 2.0.5 Embedded exception on application exit

Hi! I experienced some problems when upgraded my project from FB Embedded 2.0.3 to FB Embedded 2.0.5. When my application was closing I got a M$'s "Send Error Report" window. After some digging into with madExcept I saw that the reason was that in TZConnection.UnregisterAllDatasets - "...
by seekbirdy
21.09.2009, 07:56
Forum: 6.6 - stable
Topic: TZSqlProcessor + FB 2.0 Embedded: SET TERM causes an error
Replies: 3
Views: 720

Thanks a lot! Setting DelimiterType to dtSetTerm made the thing work. But another point is that there must not be any comments before SET TERM in the script. Is this a bug or maybe a feature?
by seekbirdy
18.09.2009, 10:59
Forum: 6.6 - stable
Topic: TZSqlProcessor + FB 2.0 Embedded: SET TERM causes an error
Replies: 3
Views: 720

TZSqlProcessor + FB 2.0 Embedded: SET TERM causes an error

Hi all, I have Delphi 2007, Zeos 6.6.5-stable and Firebird 2.0.3 Embedded. I try to execute a script with TZSqlProcessor, this script creates a procedure in my DB: SET TERM ^ ; CREATE OR ALTER PROCEDURE G5M_WORKPLACE_DEACTIVATE ( p_device_id integer, p_workplace_num integer) as begin /* Procedure Te...
by seekbirdy
18.09.2009, 10:23
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Problems with ZSQLProcessor
Replies: 2
Views: 2805

Ok then, maybe you guys could manage to ovetcome this error... But I have a same story with FB 2.0 and Zeos 6.6.5 "stable". Is that any workaround for this problem?
by seekbirdy
22.06.2009, 10:35
Forum: 6.6 - stable
Topic: Application frozen while executing ZConnection.Connect
Replies: 4
Views: 716

Ok, thanks a lot for the advice! I'll investigate it in more detail... Hope your comments will help.
by seekbirdy
20.06.2009, 09:42
Forum: 6.6 - stable
Topic: Application frozen while executing ZConnection.Connect
Replies: 4
Views: 716

It's on the localhost, but how the dll could freeze whole application?

The problem is not in a long-lasting connection (this is usual for IB 5.5, it works similarly in other applications), but in the fact that the app doesn't respond while this connection performs.
by seekbirdy
19.06.2009, 11:54
Forum: 6.6 - stable
Topic: Application frozen while executing ZConnection.Connect
Replies: 4
Views: 716

Application frozen while executing ZConnection.Connect

Hello! I have ZeosDBO 6.6.5 and trying to connect to Interbase 5.5 DB. When I call ZConnection.Connect, it connects within 5-10 seconds. It maybe could be OK, but the problem is that during this call the whole application is frozen, i.e. not responding to any mouse etc. I tried to place this Connect...
by seekbirdy
13.09.2007, 07:42
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Blob writing problem
Replies: 5
Views: 1493

I've found the following workaround for this case: procedure TUserSettings.WriteToDb; var stream: TMemoryStream; begin with TZQuery.Create(fDbConnection) do try Connection := fDbConnection; SQL.Clear; SQL.Add(Format('UPDATE g2_user SET user_settings=:settings WHERE id=%d', [fUserId])); ParamByName('...
by seekbirdy
13.09.2007, 07:16
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Blob writing problem
Replies: 5
Views: 1493

Thanks, but after replacement I see absolutely the same story... I have to submit a bug, haven't I?
by seekbirdy
12.09.2007, 14:02
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Blob writing problem
Replies: 5
Views: 1493

Blob writing problem

Hi all! I have ZEOS 6.6.1-beta, Delphi 2006 and FB 2.0. When I try to update a blob in DB in such a way: procedure TUserSettings.WriteToDb; var stream: TMemoryStream; begin with TZQuery.Create(fDbConnection) do try Connection := fDbConnection; SQL.Clear; SQL.Add(Format('SELECT user_settings AS data ...