Search found 10 matches
- 23.09.2009, 08:05
- Forum: Firebird
- Topic: FB 2.0.5 Embedded exception on application exit
- Replies: 1
- Views: 466
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 - "...
- 21.09.2009, 07:56
- Forum: 6.6 - stable
- Topic: TZSqlProcessor + FB 2.0 Embedded: SET TERM causes an error
- Replies: 3
- Views: 733
- 18.09.2009, 10:59
- Forum: 6.6 - stable
- Topic: TZSqlProcessor + FB 2.0 Embedded: SET TERM causes an error
- Replies: 3
- Views: 733
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...
- 18.09.2009, 10:23
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Problems with ZSQLProcessor
- Replies: 2
- Views: 2854
- 22.06.2009, 10:35
- Forum: 6.6 - stable
- Topic: Application frozen while executing ZConnection.Connect
- Replies: 4
- Views: 731
- 20.06.2009, 09:42
- Forum: 6.6 - stable
- Topic: Application frozen while executing ZConnection.Connect
- Replies: 4
- Views: 731
- 19.06.2009, 11:54
- Forum: 6.6 - stable
- Topic: Application frozen while executing ZConnection.Connect
- Replies: 4
- Views: 731
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...
- 13.09.2007, 07:42
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Blob writing problem
- Replies: 5
- Views: 1536
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('...
- 13.09.2007, 07:16
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Blob writing problem
- Replies: 5
- Views: 1536
- 12.09.2007, 14:02
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Blob writing problem
- Replies: 5
- Views: 1536
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 ...